In C if we want this code to be true (knowing that x is an integer) a = &x; b = a; c =∗a; d = &c; what are the types of a,b,c,d ?
a = &x; b = a; c =∗a; d = &c;