create array of strings in c from user input. #include int main() { char str[5][10]; printf("enter the strings...\n"); for(int i =0; i < 5; i++) scanf("%s", ...
確定! 回上一頁