InterviewSolution
Saved Bookmarks
| 1. |
What will be the output from the program segment? int a=0,b=10,c=40 a= - - b +c ++ +b systemout.println ("a = " + a) |
| Answer» PUT will be:a = 58 | |