Computer Science, asked by ragateprakash, 1 day ago

15. In C, which of the following is used to specify the prototype of a function?​

Answers

Answered by AMANKUMAR9899
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 12020
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