#include stdio.h
typedef struct Employee
{
char *ch;
}Employ;
void main()
{
Employ emp;
emp.ch = "Hello";
printf("%s%s", emp.ch);
}

Posted on by