2009年10月15日 星期四

[Note] Scanf and fget


char temp[100];
scanf("%s",temp);
printf("%s",temp);

在c裡頭,scanf遇到空格就會結束。
所以,如果輸入"abc efg",
結果就只會顯示"abc"

要用fget(temp,100,stdin)

沒有留言:

張貼留言