Computer Science, asked by loru9165, 1 year ago

Difference between function prototype and function definition in c

Answers

Answered by singhrishav835p9zhn7
3
A function definition cannot be called unless the function is declared. The function prototypeand the function definition must agree EXACTLY on the return type, the name, and the parameters. The only difference between the function prototype and the function header is a semicolon (see diagram below)
Similar questions