5
printf()が「%f」だけで問題ないのに、scanf()がdoubleに「%lf」を必要とするのはなぜですか?
引数がaであるかa であるかに関わらず、「を読むとき、いつ使用できるのか」に「」scanf()が必要なのはなぜですか。l%lfdoubleprintf()%fdoublefloat コード例: double d; scanf("%lf", &d); printf("%f", d);
179
c
scanf
length-modifiers