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.
C では関数のオーバーロードが許可されていないため、答えは "A" ではありませんか?
同じファイル内の複数の関数が同じ名前を持つ場合があります。
A. C では使用せず、C++ で署名が明確に異なる場合のみ。
B. すべてが静的であると宣言されている場合のみ。
C. 1 を除くすべてが static または const と宣言されている場合。
D. 外部変数が使用されていない場合のみ。