1.

What will be the output of the program If the integer is 4bytes long?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ int ***r, **q, *p, i=8;_x000D_ p = &i;_x000D_ q = &p;_x000D_ r = &q;_x000D_ printf("%d, %d, %d\n", *p, **q, ***r);_x000D_ return 0;_x000D_ }

A. 8, 8, 8
B. 4000, 4002, 4004
C. 4000, 4004, 4008
D. 4000, 4008, 4016
Answer» B. 4000, 4002, 4004


Discussion

No Comment Found