Structure #include #include #include #include typedef struct { char name[6]; int roll; }student; void main() { student *p; int n,i,temp; FILE *k; k=fopen("k.txt","w"); printf("enter the numbe of students "); scanf("%d",&n); p=(student *)malloc(n*sizeof(student)); for(i=0;iname); printf("enter the roll number of student %d ",i+1); scanf("%d",&(p+i)->roll); } for(i=0;iname); printf("\n roll number of student %d is %d",i+1,(p+i)->roll); } getch(); fclose(k); }