Contents

Which of the following format of pointer is illegal?
a) int *ip;                
b) string s, *sp=0;
c) int I; double * dp=&I;
d) int *pi=0.

c