#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]){
char s[0];
while(scanf("%s",&s)){
printf("hello, %s\n",s);
}
return 0;
}
我自己做事都沒有問題啦
可是 還是一直過不了耶
請問一下問題出在哪裡?
#include
#include
int main(int argc, char *argv[]){
char s[0];
while(scanf("%s",&s)){
printf("hello, %s\n",s);
}
return 0;
}
我自己做事都沒有問題啦
可是 還是一直過不了耶
請問一下問題出在哪裡?
#include
#include
int main(int argc, char *argv[]){
char s[0];
while(scanf("%s",&s)){
printf("hello, %s\n",s);
}
return 0;
}
我自己做事都沒有問題啦
可是 還是一直過不了耶
請問一下問題出在哪裡?
你的while迴圈沒給結束的條件,當然過不了
你必須改成while(scanf("%s",&s) != EOF){
另外,你的char s[0];
陣列大小必須大於0