#include <stdio.h> struct student { char *ch; }; void main() { struct student m; struct student *s = &m; (*s).ch = "Welcome"; printf("%s", m.ch); }
Welcome
Previous Question Next Question
Your comments will be displayed only after manual approval.