Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*2. ejer2.cpp – Leer la línea del archivo anterior.*/
- #include <iostream>
- #include <fstream>
- #include <cstring>
- using namespace std;
- int main()
- {
- char a[20],b[20];
- ifstream entrada;
- entrada.open("salida.txt");
- entrada>>a;entrada>>b;
- cout<<a<<" ";cout<<b<<endl;
- }
- //Hecho por Juan José González Ramírez
- //Correo: juanftp100@gmail.com
- //Publicado en https://www.facebook.com/infosur2038
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement