R
Q. What is the output of C Program with Recursive Function?
int mul(int); int main() { int b; b = mul(3); printf("%d", b); } int mul(int x) { if(x<=1) return 1; return (x * mul(x-1)); }
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 these is a valid preprocessor in C?
Q. Which is the correct syntax to create a union?
Q. Which of the following operators can be applied on structure variables?
Q. What will be the output of the following C code? (Initial values: x= 7, y = 8)
Q. What is the following is invalid header file in C?
Q. What is the output of C program with structures?
Q. Is it possible to nest if-else statements in C programming?
Q. C is a which level language?
Q. What is the value of character constant 'A' of ASCII character set?
Discusssion
Login to discuss.