+2 votes
by kratos

Consider the following declaration

int a, *b = &a, **c = &b;

The following program fragment

a = 4;

**c = 5;

(A) does not change the value of a

(B) assigns address of c to a

(C) assigns the value of b to a

(D) assigns 5 to a

1 Answer

+2 votes
by kratos
 
Best answer

Correct option -**(D) assigns 5 to a**

Explanation:-

The given statements assigns 5 to a

...