Home » C Programming » Typedef » Question
  1. Which option should be selected to work the following C expression?
    string s = "WELCOME";
    1. Such expression cannot be generated in C
    2. typedef char [] string;
    3. typedef char *string;
    4. typedef char [] string; and typedef char *string;
    5. None of these
Correct Option: C

typedef char *string;



Your comments will be displayed only after manual approval.