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 can you restore a redirected standard stream?
Why enum is used in c?
Difference between strcpy() and memcpy() function?
When should structures be passed by values or by references?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What does the file stdio.h contain?
When should volatile modifier be used?
How to set file pointer to beginning c?
what is the significance of static storage class specifier?
What are qualifiers and modifiers c?
What is calloc in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is wrong with this declaration?
What are the functions to open and close file in c language?
What are global variables and how do you declare them?