fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C/C++.
  5. Code, Compile, Run and Debug online from anywhere in world.
  6.  
  7. *******************************************************************************/
  8. #include <iostream>
  9. #include <fstream>
  10. using namespace std;
  11. int main() {
  12. // Create and open a text file
  13. ofstream MyFile("filename.txt");
  14. // Write to the file
  15. MyFile <<"Files can be tricky, but it is fun enough!";
  16. // Close the file
  17. MyFile.close();
  18.  
  19. }
  20.  
Success #stdin #stdout 0.01s 5252KB
stdin
45
stdout
Standard output is empty