#include<stdio.h> typedef struct { int x; int y; } point; int main(void) { FILE* f; point p; int fin; f = fopen("sauverPoints", "rt"); if (f = = NULL) printf ("Erreur ..."); else { fin = fscanf(f, "(%d,%d)\n", &p.x,&p.y); /* lecture d'un point dans le fichier */ while (fin != EOF) { printf("Voici le point (%d,%d)\n",p.x,p.y); fin = fscanf(f,"(%d,%d)\n", &p.x,&p.y); } } fclose(f); /* ferme le fichier */ } |
REMARQUES
|
Contenu du
fichier sauverPoints (12,23)
(78,89) EOF |