Computer Science, asked by sowmaya8, 6 months ago

int a=4,b=10; b=++a+5; system.out.println(a+"\t"+b​

Answers

Answered by Nothing123345678
1

Answer:

a=4, b=10

b=++a+5

b=5+5

b=10

Output:

4 10

Explanation:

Answer...Mark me brainliest and follow me

Similar questions