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 are the advantages of using new operator as compared to the function malloc ()?
Create a simple code fragment that will swap the values of two variables num1 and num2.
List a few unconditional control statement in c.
Why we not create function inside function.
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
Describe explain how arrays can be passed to a user defined function
The statement, int(*x[]) () what does in indicate?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the difference between āgā and āgā in C?
What is a buffer in c?
Which is best book for data structures in c?
Why is c not oop?
write a c program to find the sum of five entered numbers using an array named number
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant