Vidyalelo
C Programming · Q189

Structure and Union

Programming · C Programming · question 189

Q189

What will be the output of the following C code? #include typedef struct student char *a; stu; void main() stu s; s.a = "hi"; printf("%s", s.a);

A.
Compile time error
Answer
B.
Varies
C.
hi
D.
h

Answer: Option A

Solution

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