In questo articolo troverai un elenco di esempi per gestire le operazioni di input / output di file nella programmazione C.
Per comprendere tutti i programmi in questa pagina, è necessario conoscere i seguenti argomenti.
- C Arrays
- Puntatori C.
- Relazione tra matrice e puntatore
- File I / O
Esempi di file C.
1. Programma C per leggere nome e voti di n numero di studenti e memorizzarli in un file.
#include int main() ( char name(50); int marks, i, num; printf("Enter number of students: "); scanf("%d", &num); FILE *fptr; fptr = (fopen("C:\student.txt", "w")); if(fptr == NULL) ( printf("Error!"); exit(1); ) for(i = 0; i < num; ++i) ( printf("For student%dEnter name: ", i+1); scanf("%s", name); printf("Enter marks: "); scanf("%d", &marks); fprintf(fptr,"Name: %s Marks=%d ", name, marks); ) fclose(fptr); return 0; )
2. Programma C per leggere nome e voti di n numero di studenti e memorizzarli in un file. Se il file esce in precedenza, aggiungere le informazioni al file.
#include int main() ( char name(50); int marks, i, num; printf("Enter number of students: "); scanf("%d", &num); FILE *fptr; fptr = (fopen("C:\student.txt", "a")); if(fptr == NULL) ( printf("Error!"); exit(1); ) for(i = 0; i < num; ++i) ( printf("For student%dEnter name: ", i+1); scanf("%s", name); printf("Enter marks: "); scanf("%d", &marks); fprintf(fptr,"Name: %s Marks=%d ", name, marks); ) fclose(fptr); return 0; )
3. Programma C per scrivere tutti i membri di un array di strutture su un file usando fwrite (). Leggere l'array dal file e visualizzarlo sullo schermo.
#include struct student ( char name(50); int height; ); int main()( struct student stud1(5), stud2(5); FILE *fptr; int i; fptr = fopen("file.txt","wb"); for(i = 0; i < 5; ++i) ( fflush(stdin); printf("Enter name: "); gets(stud1(i).name); printf("Enter height: "); scanf("%d", &stud1(i).height); ) fwrite(stud1, sizeof(stud1), 1, fptr); fclose(fptr); fptr = fopen("file.txt", "rb"); fread(stud2, sizeof(stud2), 1, fptr); for(i = 0; i < 5; ++i) ( printf("Name: %sHeight: %d", stud2(i).name, stud2(i).height); ) fclose(fptr); )