R
Q. What is the output of the following C program?
#include <stdio.h> void main() { int x = 3; int y = ++x + x++ + --x; printf("Value of y is %d", y); }
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 function is more appropriate for reading in a multi-word string?
Q. What is the output of C program?
Q. What is the minimum number of functions to be present in a C Program?
Q. Sizes of short, int and long in a Turbo C C++ compiler in bytes are.?
Q. Which is the correct syntax to declare constant pointer?
Q. What is the output of the program?
Q. What will be output if you will compile and execute the following c code?
Q. What is the output of C Program.?
Q. What is the initial value of extern storage class specifier?
Q. size of union is size of the longest element in the union
Discusssion
Login to discuss.