C
Q. Which of the following syntax is correct for nested if-else statements?
The correct syntax for nested if-else statements in C programming is: if(exp1){ if(exp2){ } } else { if(exp3){ } }
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which statements are used to change the execution sequence?
Q. Which of the following data types will generate an error on the modulo % operation?
Q. What will be the output of the following C program?
Q. What will be output for the following code?
Q. What will be the output of the following C code? (Initial values: p= 10, q = 12)
Q. A character constant is enclosed by
Q. Which of following is not accepted in C?
Q. What will be output if you will compile and execute the following c code?
Discusssion
Login to discuss.