what is the Output?
int a=4 b=3;
printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++);
printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Answer Posted / dumitru
in Open Suse the result is:
9 10 7 6 10 4
-2 -1 -3 1 -3 -3
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
how is the examination pattern?
Write a program to print factorial of given number without using recursion?
What is c++ used for today?
What are the disadvantages of a shell structure?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is c system32 taskhostw exe?
difference between Low, Middle, High Level languages in c ?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
How main function is called in c?
Is c compiled or interpreted?
How can I open a file so that other programs can update it at the same time?
List some basic data types in c?
What is c language used for?
What does the && operator do in a program code?
Is main is a keyword in c?