Advertisement
Zaint

Untitled

Dec 14th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2. void consultar_grupo(){
  3. int c;
  4. FILE *txt;
  5. txt = fopen("grupos_musicales", "rt");
  6. if(txt==NULL){
  7. printf("Error al tratar de leer el archivo");
  8. }
  9. while((c=fgetc(txt))!=EOF){
  10. if(c=='\n'){
  11. printf("\n");
  12. }
  13. else{
  14. putchar(c);
  15. }
  16. }
  17.  
  18. fclose(txt);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement