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 / malith
9,10,7,6,10,4-2,-1,-3,1,-3,-3
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
How do I swap bytes?
How do c compilers work?
How can I determine whether a machines byte order is big-endian or little-endian?
What is the use of ?: Operator?
What are the benefits of organizational structure?
Why do we use stdio h and conio h?
Differentiate between Macro and ordinary definition.
Is it better to use a macro or a function?
How can I make it pause before closing the program output window?
When should you not use a type cast?
What is string in c language?
What is null in c?
Is exit(status) truly equivalent to returning the same status from main?
Write the syntax and purpose of a switch statement in C.
Explain Function Pointer?