MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include typedef struct student { char *a; }stu; void main() { struct student s; s.a = "hey"; printf("%s", s.a); } |
| A. | Compile time error |
| B. | Varies |
| C. | he |
| D. | hey |
| Answer» E. | |