私はANSICの初心者ですが、質問があります。ばかげた質問かもしれませんが、申し訳ありません。
#include<stdio.h>
main()
{
int age;
printf("Hello World!\n");
printf("Please enter your age: ");
scanf("%d", &age);
printf("You entered %d\n", age);
fflush(stdin);
getchar();
}
scanf関数を学ぶのは私の2番目のプログラムです。私の質問は:printf、scanf、fflush、stdin、getcharがstdio.hで定義されていることを知っていますが、 fflush(stdin)を使用する場合にのみ、#include < stdio.h >を指定する必要がありますが、他の方法を使用する場合はその行#includeを削除できます。