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 / mathan kumar .t
6,6,5,5,5,4
0,0,0,1,1,2
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
What is data type long in c?
Why can arithmetic operations not be performed on void pointers?
What is logical error?
Why does this code crash?
What is the use of function in c?
What is pivot in c?
What is a pointer in c?
What are the general description for loop statement and available loop types in c?
What is header file in c?
What does c mean?
How can I sort more data than will fit in memory?
Can math operations be performed on a void pointer?
Is javascript written in c?
Write a program to print numbers from 1 to 100 without using loop in c?
Explain the difference between null pointer and void pointer.