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
What is return type in c?
Explain what is the advantage of a random access file?
Subtract Two Number Without Using Subtraction Operator
What is structure pointer in c?
Why is c called a mid-level programming language?
What is an auto variable in c?
What is action and transformation in spark?
What is realloc in c?
how we can make 3d venturing graphics on outer interface
What is the translation phases used in c language?
There seem to be a few missing operators ..
What is the difference between text and binary modes?
How can a string be converted to a number?
What is cohesion in c?
When would you use a pointer to a function?