1.

What type of initialization is needed for the segment p[3] = 3 ; to work?

A. int *p= "Interview",
B. char *p = Interview! ;
C. char p[] = Interview! ;
D. both char *p = Interview! ; and char p[] = Interview! ;
E. None of these
Answer» D. both char *p = Interview! ; and char p[] = Interview! ;


Discussion

No Comment Found