#include <stdio.h> struct Employee { char *ch; }; void main() { struct Employee *e; e->ch = "Prayag"; printf("%s", e->ch); }
Segmentation fault
Previous Question Next Question
Your comments will be displayed only after manual approval.