English, asked by eoehdg1739, 7 months ago

if int a=3; So, a++; a = ? If int a = 3; So, a ++; a =?​

Answers

Answered by sunandapatra78p41ov5
0

Given :

a = 3

b = 2

Then :

b = a++

which means take a value to b and then increment the a value. so b value is same as a (before the increment), so with that statement, their value become:

b = 3 (same as a before increment)

a = 4 (the value change because we got increment)

Then evaluate the last statement:

++b => this means that we increment the value before we use the value. so in the end.

so,

cout << ++b; // will result: 4.

MARK ME AS BRAINLIST ANSWER !!

Similar questions
Science, 3 months ago