Saved Bookmarks
| 1. |
What will be the output of this program? #includeusing namespace std; static int x = 5; void main()x = 9;}int x = 4;cout |
|
Answer» Answer: OUTPUT: 3 As it is pre decrement operator the answer will be 3. (MARK this answer as Brainliest) |
|