Computer Science, asked by Aaradhayagupta2108, 18 days ago

Give the output of the following:
int a=0, b= 30, c=40;
a= - - b + c + + + b;
System.out.println(a);

Answers

Answered by barani79530
0

Explanation:

please mark as best answer and thank

Attachments:
Answered by ramudaysingh2020
0

Answer:

= a = --b + c +++b

= a = 29 + 40 + 30

= a = 29 + 70

= a = 99

Similar questions