Computer Science, asked by raj407038, 5 months ago

The output of the following code will be: int a=10; int b=5; int c= a++ + b ; System.out.println(c);​

Answers

Answered by izabelJustin
1

a=10,b=5

c=a++ + b

c=11+5

c=16

Similar questions