0
what is the output for the a=a++ + 10 if a =5
6 Answers
+ 2
15
+ 1
int a =1;
a=a++ +10;
output=11
+ 1
@venkata
Your question is incomplete.
You did not give the initial value of a.
+ 1
I think 16 will be the answer because+ operator is also there soo first it will increment value of a then add it into 10
0
should be 16
0
16