Q. Which option should be selected to work the following C expression?
Code:
string p = "HELLO";
β
Correct Answer: (B)
typedef char *string;
string p = "HELLO";
You must be Logged in to update hint/solution