A function prototype in C is :
AA keyword
BA non executable statement which gives information about the function
CA predefined function
DA function which contains several return statements
AA keyword
BA non executable statement which gives information about the function
CA predefined function
DA function which contains several return statements
Related Questions:
What is the value of sum after the execution of the following code?
int sum = 0;
for (int i = -5; i<=;i++)
{
if (!i) break;
sum += i;
}