A
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;
}
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;
}
- Correct Answer - Option(A)
- Views: 28
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.