For a function prototype, the “argumentName” in the argument list is optinal.
查看答案
The following is a function prototype.-int fmax(int a, int b);-
A. 对
B. 错
The actual arguments of a function can be any valid C expression.
A. 对
B. 错
The actual arguments and the formal arguments of a function are the same group of variables.
A. 对
B. 错
Inside a function, the changes to the values of formal arguments can affect the values of actual arguments outside the function, without using the pointer variables.
A. 对
B. 错