MCQOPTIONS
Saved Bookmarks
| 1. |
Note:Includes all required header filesusing namespace std; int main() { int find[] = {1, 2, 3, 4}; int *p = (find + 1); cout << *find + 9; return 0; } 19.What will be the output of the following program? |
| A. | 1,2,3,4,5, |
| B. | 12345 |
| C. | compile error |
| D. | runtime error |
| Answer» B. 12345 | |