- A Compile time error
- B Nothing
- C Junk values
- D st st
C Programming Language MCQ Structure in C Language
⚠ Report ✓ Question Verified Copy Link
#include struct student { char *name; }; void main() { struct student s, m; s.name = "st"; m = s; printf("%s%s", s.name, m.name); }
Learn More MCQ Questions from C Programming Language MCQ Structure in C Language