What will be the out output of a and b in the following.If int a,b; a=10; b=a++;
Answers
Answered by
1
Answer:
a= 10
b= 12
Explanation:
b=a++
=a+1+1
=a+2
=10+2
=12
Similar questions