e) int x=10,y=20,z; z= ++X +(--y* 4)+ --y,what is the result stored in z.
Answers
Answered by
0
z=++10+(--20*4)+--19;
z=11+(19*4)+18;
z=95;
Similar questions