forked from chelinho139/Tutoriales-C
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut49leer.c
33 lines (26 loc) · 894 Bytes
/
tut49leer.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*Copyright Chelin Tutorials 2011 All Rights Reserved.
http://chelintutorials.blogspot.com */
#include <stdio.h>
/*Programa sencillo que lee de un archivo*/
int main(){
printf("\n Bienvenidos al Lector\n");
FILE* miarchivo=NULL;
char* nombrearchivo= "texto1.txt";
char lectura[80];
//abro el video
miarchivo= fopen(nombrearchivo, "r");
if(miarchivo==NULL)return -1;
fscanf(miarchivo," %[^\n]",&lectura);
printf("Lectura: %s\n",lectura);
fscanf(miarchivo," %[^\n]",&lectura);
printf("Lectura: %s\n",lectura);
fscanf(miarchivo," %[^\n]",&lectura);
printf("Lectura: %s\n",lectura);
/*Nota: Fscanf ademas devuelve un int, para saber
si se ha llegado al final del archivo
ej: int x;
x = fscanf(miarchivo," %[^\n]",&lectura);
if (x==EOF)printf("Se ha terminado el archivo/m")*/
fclose(miarchivo);
return 0;
}