Enter record and store information in C program
//enter record and store information #include <stdio.h> main() { FILE *fptr; char name[20]; int age; float salary; /* open for writing */ fptr = fopen("emp.txt", "w"); if (fptr == NULL) …
Enter record and store information in C program Read More