問題タブ [fputs]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
3 に答える
703 参照

c - printf("%s")、printf(s)、fputs の違いは何ですか?

上記のコードのコンテキストでは、これら 3 つの違いは何ですか?

  1. printf("%s",s);
  2. printf(s);
  3. fputs(s,stdout);
0 投票する
1 に答える
161 参照

assembly - ここで stdout を逆参照する必要があるのはなぜですか?

fputs(str, stdout);アセンブリから呼び出そうとしています。

push dword [stdout]ただの代わりになぜ私が必要なのpush stdoutですか?

C では を行わないのに、アセンブリfputs(str, *stdout)で逆参照する必要があるのはなぜですか?stdout

完全なコード: