A

Admin • 833K Points
Coach

Q. What will be the output of the following code snippet?

Code:
#include <stdio.h>
void solve(int x) {
if(x == 0) {
printf("%d ", x);
return;
}
printf("%d ", x);
solve(x - 1);
printf("%d ", x);
}
int main() {
solve(3);
return 0;
}
  • (A) 3 2 1 0 1 2 3
  • (B) 3 2 1 0
  • (C) 0 1 2 3
  • (D) None of the above
  • Correct Answer - Option(A)
  • Views: 28
  • Filed under category C Programming
  • Hashtags:

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.