Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは、入力に適したプログラムです。"problem"
"problem"
ただし、次の場合は停止します。"this is the problem,this is the problem,this is the problem"
"this is the problem,this is the problem,this is the problem"
なんで?
#include <stdio.h> int main() { char *p; gets(p); puts(p); return 0; }
メモリ保護の問題はありますか?