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 a dynamic array in c?
What is multidimensional arrays
What are local variables c?
What are inbuilt functions in c?
Why c is known as a mother language?
Explain how does flowchart help in writing a program?
List the variables are used for writing doubly linked list program.
When is a “switch” statement preferable over an “if” statement?
What are the key features in c programming language?
Is it fine to write void main () or main () in c?
Should I learn data structures in c or python?
How can I run c program?
What is a nested formula?
What does %c do in c?
Are there constructors in c?