doubleprintfの正しい形式指定子は何ですか?それがある%fか、それがありますか%lf?だと%f思いますが、よくわかりません。 コードサンプル #include <stdio.h> int main() { double d = 1.4; printf("%lf", d); // Is this wrong? }
#include <stdio.h> int main() { unsigned long long int num = 285212672; //FYI: fits in 29 bits int normalInt = 5; printf("My number is %d bytes wide and its value is %ul. A normal number is %d.\n", sizeof(num), num, normalInt); return 0; } 出力: My number is 8 bytes wide …