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