Computer Science, asked by shabindhiya, 2 days ago

Give the output of the following: int a=10,b=30,c=40; a=--b+c++ + b; system.out.print(''a='' + a);​

Answers

Answered by rishavray071
1

Explanation:

Plz Mark as brainlist

a = 98

WORKING

a = --b + c++ + b

⇒ a = 29 + 40 + 29

⇒ a = 98

Answered By

6 Likes

Similar questions