Discussion :: Functions
-
What will be the output of the program?
#include
Answer : Option D
Explanation :
No answer description available for this question.
Be The First To Comment
What will be the output of the program?
#include
void fun(int);
typedef int (*pf) (int, int);
int proc(pf, int, int);
int main()
{
int a=3;
fun(a);
return 0;
}
void fun(int n)
{
if(n > 0)
{
fun(--n);
printf("%d,", n);
fun(--n);
}
}
Answer : Option D
Explanation :
No answer description available for this question.
Be The First To Comment