Computer Science, asked by singhbob2018, 7 months ago

Find the value of b and a if int a=19; int b=a++

Answers

Answered by st9670
0

Answer:

Explanation:

a++ is postfix  so ,

b=19    ---- (but in rough A would be 20 because its postfix so )

a=20

b=19

Similar questions