Advertisement
lencinasalejo

CargarArrayPrecargado

Apr 26th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1.     t_persona ps[2]={{112233,"Sim B", 'M'}, {1133325, "Alejo L", 'M'}};
  2.     FILE *fp
  3.     fp= fopen("archivo.dat", "wb");
  4.     if (!fp) return 1;
  5.     fread (ps, sizeof(t_persona),2,fp);
  6.     fclose(fp);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement