Saved Bookmarks
| 1. |
What will be the output of the following program segment int a =0, b=30, c=40; a=(b++) - c+(++b) ; |
|
Answer» MATHS is like a=31-40+31 a=62-40 a=22 Explanation: |
|