Computer Science, asked by dhanushmaheshwari117, 5 months ago

e) int x=10,y=20,z; z= ++X +(--y* 4)+ --y,what is the result stored in z.​

Answers

Answered by niteshkuriyal68
0

z=++10+(--20*4)+--19;

z=11+(19*4)+18;

z=95;

Similar questions