bool basic_ifstream<C,T>::is_open() const;
#include <fstream>
#include <iostream> #include <fstream> int main() { using namespace std; // Open the input file stream for reading basic_ifstream<char> qXoaXFile; qXoaXFile.open("XoaX.txt"); if (qXoaXFile.is_open()) { // Read from the file cout << "Read from file: " << qXoaXFile.rdbuf() << endl; qXoaXFile.close(); } else { cout << "\"XoaX.txt\" failed to open" << endl; return -1; } // Keep the window open cin.get(); return 0; }
© 20072025 XoaX.net LLC. All rights reserved.