C Programming Language MCQ Structure in C Language
⚠ Report ✓ Question Verified Copy Link
#include struct student { char *name; }; struct student s; struct student fun(void) { s.name = "newton"; printf("%s\n", s.name); s.name = "alan"; return s; } void main() { struct student m = fun(); printf("%s\n", m.name); m.name = "turing"; printf("%s\n", s.name); }
Learn More MCQ Questions from C Programming Language MCQ Structure in C Language