MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following C++ program?#include int x = 7;void showx ();void showxagain ();int main (){ showx (); showx (); showxagain ();}void showx (){ int x = 34; cout |
| A. | 353637 |
| B. | 34347 |
| C. | 35368 |
| D. | 35358 |
| Answer» C. 35368 | |