MCQOPTIONS
Saved Bookmarks
| 1. |
#include <iostream>using namespace std;int main(){ int i; char *lfc[] = {"C", "C++", "Java", "VBA"}; char *(*ptr)[4] = &lfc; cout << ++(*ptr)[2]; return 0;} 16.What will be the output of this program? |
| A. | 1 |
| B. | 2 |
| C. | 3 |
| D. | 4 |
| Answer» C. 3 | |