Vidyalelo
C Programming · Q170

Structure and Union

Programming · C Programming · question 170

Q170

Which of the given option is the correct method for initialization? typedef char *string;

A.
*string *p = "Hello";
B.
string p = "Hello";
Answer
C.
*string p = 'A';
D.
Not more than one space should be given when using typedef

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board