M

Monu Rathod • 7.03K Points
Tutor III

Q. What will be the output of the following C function?

Code:
#include <stdio.h>
void reverse(int i);
int main()
{
reverse(1);
}
void reverse(int i)
{
if (i > 5)
return ;
printf("%d ", i);
return reverse((i++, i));
}
  • (A) 1 2 3 4 5
  • (B) Segmentation fault
  • (C) Compilation error
  • (D) Undefined behaviour

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.


Question analytics