Files
DEV/DEV.1.1/Fichiers/lecture-ficher/openfile-fgets.c

22 lines
307 B
C
Raw Permalink Normal View History

2024-12-08 23:45:04 +01:00
#include <stdio.h>
#include <stdlib.h>
int main(void){
FILE *fic = fopen("text.txt", "r");
char lettre[256];
if(fic == NULL){
exit(1);
}
while(fgets(lettre, 255, fic) != NULL){
printf("%s", lettre);
}
printf("\n");
fclose(fic);
return 0;
}