M
Q. What is the difference between the following 2 C codes?
#include <stdio.h> //Program 1 int main() { int d, a = 1, b = 2; d = a++ + ++b; printf("%d %d %d", d, a, b); } #include <stdio.h> //Program 2 int main() { int d, a = 1, b = 2; d = a++ +++b; printf("%d %d %d", d, a, b); }
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. How many bytes are occupied by near, far and huge pointers (DOS)?
Q. For which type, the format specifier "%i" is used?
Q. Which one of the following is not a linear data structure?
Q. What is the output of the C Program.?
Q. Choose a correct statement about a Multidimensional array and pointer.
Q. Which of the following is not logical operator?
Q. What will you do to treat the constant 3.14 as a long double?
Q. Which option should be selected to work the following C expression?
Q. What is the present C Language Standard?
Q. What will be the output of the following C function when EOF returns?
Discusssion
Login to discuss.