Computer Science, asked by brainykid76, 4 months ago

If a=5, b=15, c=21. x=++a*b++ + ++c;

Answers

Answered by kamalrajatjoshi94
0

Answer:

int a=5,b=15,c=21;

x=++a*b++ + ++c;

=6*15 +22

=90+22

=112

Similar questions