私はここにこだわっているとは思えませんが、これを乗り越えることはできません。 文の途中にlong
の整数を入れたいと思います。Cのprintf()関数
この出力が表示されます。
Howdy, I am 166662
Process returned 0 (0x0) execution time : 0.019 s
Press any key to continue
私はこれを実行するためにコードブロックを使用しています。
#include <stdio.h>
int main(){
long mn = 166662;
printf("Howdy, I am %ld",mn,"i hope that you had a better better day than I having.\n");
return 0;
}
printf仕様を読んでください:最初の書式文字列、次にパラメータ。 – Yunnosch
'' Howdy、私は%ld " - >' "Howdy、私は%ld。%s" ' – BLUEPIXY
[' printf'のドキュメントを読む](http://en.cppreference.com/w/ cpp/io/c/fprintf)。このようには動作しません。 – tadman