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
0
Answer:
a..............................
Answered by
0
Explanation:
sum=12
here x++ mean postfix that is first use the value then change it .
Similar questions