Computer Science, asked by wwwmanthan2006, 1 month ago

int x= 5;z=x++*3+ ++x *4 what will be the value of z​

Answers

Answered by Anonymous
0

Answer:

int x = 5;z=x++*3+ ++x * 4 what will be the value of z

Answered by ShashwatPandey007
0

z = x++ * 3 + ++x *4

z = 5 * 3 + 7 *4

z = 15 + 28

z = 43

Please mark me the Brainliest

Similar questions