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. What is the output of C Program.?
Q. Ranges of signed int and unsigned int are?
Q. What will be the output of the following C code?
Q. What is the output of the C Program?
Q. Which Translator can translate Assembly language program to Machine Language?
Q. Which is the correct syntax to declare an array in C?
Discusssion
Login to discuss.