MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following statements is true after execution of the program? int a[10],I,*p; a[0] = 1; a[1] = 2; p = a; (*p)++; |
| A. | a[0] = 2 |
| B. | a[1] = 3 |
| C. | a[1] = 1 |
| D. | a[0] = 3 |
| Answer» B. a[1] = 3 | |