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