Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- using namespace std;
- int main(){
- char nombre[100];
- cout << "Ingrese el nombre del archivo\n";
- cin >> nombre;
- ifstream archivo(nombre);
- archivo.close();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement