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

24 lines
374 B
C
Raw 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 texte[256];
int age = 0;
int Nombre = 0;
if(fic == NULL){
exit(1);
}
fscanf(fic, "%s %d %d", texte, &age, &Nombre);
printf("Nom : %s\n", texte);
printf("Age : %d\n", age);
printf("\n");
fclose(fic);
return 0;
}