Ques 1 Function
A function declaration tells about the _______
Ques 2 Function
Which of the following is not a Library function?
Ques 3 Function
Consider the following C function
int f(int n)
{
static int r=0;
if(n<=0) return 1;
if(n>3)
{
r=n;
return f(n-2)+2;
}
return f(n-1)+r;
}
What is the value of f(5)?
Ques 4 Function
The execution of a C Program starts with the?