Computer Science, asked by piyushdey303, 9 months ago

WHAT WILL BE THE OUTPUT OF a & b if int a,b; a=10; and b=a++

Answers

Answered by nagajonnalagad46
5

Answer:

the output 10,11 is the answer

Explanation:

Answered by Anonymous
3

Answer:

b=a++ + ++a; a++ means 10 but it will increase it value if it is ... ++a means increase value of a immediately. ... [] args) { int a=10,b; b= a++ + ++a; System.out. println(b); } }.

Explanation:

hope it will help you please mark me as brainlist and follow me

Similar questions