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
Explain what is the advantage of a random access file?
Difference between strcpy() and memcpy() function?
How do I create a directory? How do I remove a directory (and its contents)?
Explain how can type-insensitive macros be created?
Do you know the purpose of 'register' keyword?
What kind of structure is a house?
What does c mean?
Are pointers really faster than arrays?
What is line in c preprocessor?
What are linked lists in c?
What does typeof return in c?
What are the valid places to have keyword “break”?
why return type of main is not necessary in linux
What is variables in c?
Does c have enums?