Home » C Programming » Typedef » Question
  1. Which of the given option is the correct method for initialization?
    typedef char *string;
    1. Not more than one space should be given when using typedef
    2. *string *q = “Welcome”;
    3. string p = “Welcome”;
    4. *string p = ‘B’;
    5. None of these
Correct Option: C

*string p = ‘A’;



Your comments will be displayed only after manual approval.