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 / arun sebastin
9 9 7 6 6 4
-2 -1 -1 1 1 2
The conceptis simple dothe operation in reverse
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
What is indirection in c?
What is LINKED LIST? How can you access the last element in a linked list?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What is difference between stdio h and conio h?
What is variable and explain rules to declare variable in c?
How to create struct variables?
How do you define a string?
What is a method in c?
What are the 32 keywords in c?
What is difference between function overloading and operator overloading?
How can I write a function analogous to scanf?
Do you know the purpose of 'register' keyword?
Can you tell me how to check whether a linked list is circular?
How do we open a binary file in Read/Write mode in C?
What is clrscr in c?