#include <stdio.h>
int main() {
FILE*fptr;
fptr=fopen("Student.txt","w");
char name[100];
int age;
float cgpa;
printf("enter name :");
scanf("%s",&name);
printf("enter age :");
scanf("%d",&age);
printf("enter cgpa :");
scanf("%f",&cgpa);
fprintf(fptr,"%s\t",name);
fprintf(fptr,"%d\t",age);
fprintf(fptr,"%ft",cgpa);
fclose(fptr);
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: