#include <stdio.h>
#include <stdlib.h>
int main()
{
char T[101];
scanf("%s",T);
printf("hello, %s\n",T);
return 0;
}
在系統裡面,這可能哪裡出錯?
#include
#include
int main()
{
char T[101];
scanf("%s",T);
printf("hello, %s\n",T);
return 0;
}
在系統裡面,這可能哪裡出錯?
buffer overflow
喔,是系統獨特的程式格式。
沒有迴圈讓系統 在同一個程式內一直輸入的關係。