main()
{
int d,a;
printf("Enter the digit :");
scanf("%d",&d);
printf("Enter another digit :");
scanf("%d",&a);
}
出力: 数字を入力してください: 10 別の数字を入力してください:10
main()
{
int d;
char a[10];
printf("Enter the digit :");
scanf("%d ",&d);
printf("Enter another digit :");
scanf("%s ",a);
}
出力:
Enter the digit : 10
waiting for stdin
との違いを説明できる人はいscanf("%d",&a)
ますscanf("%d ",&a)
か? scanf
ステートメントにスペースを追加すると、標準入力を待機するのはなぜですか?