M
Q. What will be the output of the following code snippet?
#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; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which of the following is NOT possible with any 2 operators in C?
Q. The keyword used to transfer control from a function back to the calling function is
Q. Loss in precision occurs for typecasting from____________.
Q. What is the output of C Program.?
Q. Which of the following is true about arrays in C.
Q. The following statement in‘C’ language : int **a ;
Q. When double is converted to float, then the value is?
Q. Choose correct Syntax for C Arithmetic Compound Assignment Operators.
Discusssion
Login to discuss.