. a) What will be the output if a=3,b=2,
a= a++ + ++b + a +b++;
b= ++ a + ++b + a++ + b-
Answers
Answered by
1
Answer:
a=12
b=13
Explanation:
a=a++ + ++b+a+b++;
a=4+3+3+3;
a=12;
b=++a+ ++b+a++ +b-;
b=4+3+4+2;
b=13;
Similar questions