C Functions Questions and Answers
Practice ModeShowing 10 of 151 questions
Q151
Find the output
void e(int);
void main ( )
{
int a;
a=3;
e (a);
}
void e(int sun)
{
if (sun>0)
{
e(--(sun);;
printf("%d ", sun);
e(--sun);
}
}
Answer: Option B