I\'m trying to create a temporary text file in C++ and then delete it at the end of the program. I haven\'t had much luck with Google.
Could you tell me which funct
I wonder why most of you guys showed him the C way of doing it instead of the C++ way. Here's fstream. Try that, deleting a file is OS depended but you can use boost.filesystem to make things easy for you.