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 << *p; return 0; }17.What will be the output of this program? |
| A. | 1 |
| B. | 2 |
| C. | address of find |
| D. | 4 |
| Answer» D. 4 | |