Example of typedef structure:-
void main()
{
typedef struct
{
int roll;
char name[10];
}stu1,stu2;
printf(“enter roll of 2 student”);
scanf(“%d%d”,&stu1.roll,&stu2.roll);
printf(“enter name of two student”);
scanf(“%s%s”,stu1.name,stu2.name);
printf(“%d%d”, stu1.roll,stu2.roll);
printf(“%s%s”,stu1.name,stu2.name);
getch();
}