Student

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<stdio.

h>
int main ()
{
FILE *fp;
long int id;
char name[30];
int rank;
printf("\n enter student id");
scanf("%u",&id);
printf("\n enter name");
scanf("%s",name);
printf("\n enter rank");
scanf("%d",&rank);
fp=fopen("student,txt","w");
if(fp==NULL)
{
printf("\n file cannot be open");
return;
}
fprintf(fp,"%u\t%s\t%d",id,name,rank);
return 0;
}

You might also like