Can someone tell me what the program is dumping? Looks like some kind of memory code. Memory dump maybe?
Output of program:
0x22fed0
Code:
#include <iostream> #include <fstream> using namespace std; int main () { ofstream myfile; myfile.open ("log.txt"); myfile << "Writing this to a file.\n"; myfile.close(); cout << myfile; return 0; }
0x22fed0
Comment