題目沒提到重複輸入,以及 ctrl+z 可結束本程式。
可改成:
請寫一個程式,可以重複 讓使用者輸入字串並且輸出該字串,直到使用者輸入 ctrl+z 才結束本程式。
-------------------------------------------------------------------------------------------------------------
本題另解:
char s[9999];
int status;
int a;
while (1){
status=scanf("%s", s);
if (status == EOF) break;
printf("hello, %s\n", s);
}