Computer Science, asked by bhiseraghav, 2 months ago

if a=6 and b=a++ then what value will b store

Answers

Answered by Zack2005
1

The Value stored will be 7

Answered by rushilk7
0

Answer:

7

Explanation:

var a = 6

b = a++

the basic operators inform that the ++ operator adds one(1) to the current number.

6 ++ = 6+ 1

=7

Similar questions