

MCQOPTIONS
Saved Bookmarks
1. |
Consider the following C program. # include int main( ) { static int a[] = {10, 20, 30, 40, 50}; static int *p[] = {a, a+3, a+4, a+1, a+2}; int **ptr = p; ptr++; printf("%d%d", ptr - p, **ptr}; } The output of the program is _________ |
A. | 140 |
B. | 120 |
C. | 100 |
D. | 40 |
Answer» B. 120 | |