If a=5, b=15, c=21. x=++a*b++ + ++c;
Answers
Answered by
0
Answer:
int a=5,b=15,c=21;
x=++a*b++ + ++c;
=6*15 +22
=90+22
=112
Similar questions