Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. void leer_archivo(char a[15]){
  2. ifstream j;
  3. char f;
  4. j.open(a);
  5. while(!j.eof()){
  6. j.get(f);
  7. if(!j.eof()){
  8. cout<<f;
  9. }
  10. }
  11. j.close();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement