if a=6 and b=a++ then what value will b store
Answers
Answered by
1
The Value stored will be 7
Answered by
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