Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. std::ofstream myFile;
  2.  
  3. int _stdcall main()
  4. {
  5.     myFile.open("Some\\Location.csv");
  6.     myFile << "Hello World"" << ",";
  7.  
  8.     myFile.close();
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement