Give the output of the following:
int a=0, b= 30, c=40;
a= - - b + c + + + b;
System.out.println(a);
Answers
Answered by
0
Explanation:
please mark as best answer and thank
Attachments:
Answered by
0
Answer:
= a = --b + c +++b
= a = 29 + 40 + 30
= a = 29 + 70
= a = 99
Similar questions