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; return 0; } 18.What will be the output of the following program? |
| A. | 9 |
| B. | 10 |
| C. | 11 |
| D. | error |
| Answer» C. 11 | |