Q. 51 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: (A)
Explanation: