M
Q. What will be the output of the following C function?
#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)); }
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. Can the else statement exist without the if statement in C?
Q. What will be the output of this code?
Q. What is the output of this program?
Q. Variable names beginning with underscore is not encouraged. Why?
Q. What is the output of C program with strings?
Q. What are the data type of variables that can be returned by a C Function.?
Discusssion
Login to discuss.