-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstructAndFile.c
44 lines (30 loc) · 861 Bytes
/
structAndFile.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
34
35
36
37
38
39
40
41
42
43
#include <stdlib.h>
#include <stdio.h>
struct Persona {
char nombre[50];
int edad;
};
int main(int argc, char ** args) {
struct Persona registro;
printf("Ingrese nombre de la persona:\n");
gets(registro.nombre);
printf("Ingrese edad: ");
scanf("%i",®istro.edad);
printf("\nLa persona es %s de %i años\n",registro.nombre,registro.edad);
FILE * archivo = fopen("datos1.dat","wb");
if(archivo != NULL)
fwrite(®istro,sizeof(registro),1,archivo);
else
printf("El archivo no se pudo crear\n");
fclose(archivo);
printf("Ahora se intenta leer de otro ejemplo...\n");
archivo = fopen("datos2.dat","rb");
if(archivo != NULL) {
fread(®istro,sizeof(registro),1,archivo);
printf("Se ha leido a %s de %i años\n",registro.nombre,registro.edad);
}
else
printf("El archivo no se pudo abrir\n");
fclose(archivo);
return 0;
}