15. In C, which of the following is used to specify the prototype of a function?
Answers
Answered by
2
Explanation:
function prototype is simply the declaration of a function that specifies function's name, parameters and return type. It doesn't contain function body. A function prototype gives information to the compiler that the function may later be used in the program.
Answered by
0
Explanation:
void Sum( int, int ); First of all, function prototypes include the function signature, the name of the function, return type and access specifier. In this case the name of the function is "Sum". The function signature determines the number of parameters and their types
Similar questions