Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「file1.C」と「file2.C」などの複数のファイルがあると仮定すると、「myprog」という名前の実行可能プログラムにコンパイルできます。
一部のチュートリアルでは、次のコマンドが使用されていることに気付きました。
g++ file1.C file2.C -o myprog
他の間:
g++ -o myprog file1.C file2.C
私の質問は、これら 2 つの形式は本質的に同じですか? どちらがより正式ですか?
引数は任意の順序で指定できます。どちらがより正式であるかは、ディーラーの選択です。