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