I typed out a program that I'd like to show to my english class at school. I've got it included all in one .cpp file on my compiler (Visual C++ '08). I was wondering what the best way to transport it to a school windows computer and use it there would be. Could I just burn the .exe file to a disc and put the disc in at school and run it from there, or will that not work? (The school most certainly doesn't have a compiler.)
I'm assuming you downloaded the runtime. You don't need it installed on your computer, since it was already installed by VC++. Put it next to the executable on your media of choice and install it on the computer you're going to use to run your program.
Ok, let me get this straight: I can just put an executable file of my program on my cd, and then this other program's installation (.exe) on the cd, and then install that on the other computer.
What if there's something on the school computer that blocks all .exe applications? I think I've seen that before on a school computer...
Visual Studio puts them by default in (My documents)\Visual Studio 2008\Projects\(solution name)\(configuration name)
(configuration name) could be Debug or Release.
Or you can right-click the solution in the solution explorer and select "open folder in windows explorer".