Write a program to open a new file and read roll-no, name, address and phone number of students until the user says “no”, after reading the data, write it to the file then display the content of the file.
Rahul Notes
6:34 PM
#include<stdio.h> #include<conio.h> struct { int roll; char name[25]; char add[30]; long phone; }st...