Which option should be selected to work the following C expression?
string p = "HELLO";
string p = "HELLO";A. typedef char [] string;
B. typedef char *string;
C. typedef char [] string; and typedef char *string;
D. Such expression cannot be generated in C
Answer: Option B
Related Questions on Structure and Union
Which of the following can be a member of a structure?
A. Function
B. Another structure
C. Enumeration
D. All of the above

Join The Discussion