hi
Im making a windows program and it would be great to have simple output (with iostream) so i was wondering if there is a way to have a ms window and send output to command prompt?
Ive tryed to launch the program with cmd but it didnt help.
You can redirect the standard output to a file :) That's probably the simplest way. Then when finished, remove the redirection and the cout commands will do nothing :)