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 / lingaraja.d
5,5,5,5,5,5 2,2,2,2,2,2
| Is This Answer Correct ? | 3 Yes | 16 No |
Post New Answer View All Answers
Explain what is page thrashing?
Do you know pointer in c?
Write a program to generate random numbers in c?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Explain what is #line used for?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
How can I insert or delete a line (or record) in the middle of a file?
Explain Basic concepts of C language?
What is the use of linkage in c language?
Explain c preprocessor?
What are the features of c languages?
Explain main function in c?
What is structure packing in c?
Define circular linked list.
Why do some versions of toupper act strangely if given an upper-case letter?