Computer Science, asked by crhythm2, 6 months ago

What will be the value of sum,x after it has been executed?
int x=5 ;
int sum=7
sum=sum+(x++);

Answers

Answered by Nandanshinganalli
0

Answer:

a..............................

Answered by jamescoslin
0

Explanation:

sum=12

here x++ mean postfix that is first use the value then change it .

Similar questions