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.
この質問はばかげているように聞こえますが、答えてください。
int A(int num);関数プロトタイプとして持っているとしましょう。
int A(int num);
関数の名前は何と呼ぶでしょうか。 int A(int num)またはA?
int A(int num)
A
また、関数の本体は定義の先頭の部分ですか?
int A(int num){ <-- Does the body include this? return num * num; }
ありがとうございました。