G
Guest
Hi. I've got a C++ program written in Visual C++ 2003. The program is
trivial, created with the Program-creation wizard: used the .NET "Form"
template. The program has a trivial single-pane form GUI.
I've got some stdout print statements in the code ... but I cannot find
where in the world the output text is appearing. For printing I tried both:
printf ("Hello world\n");
and
Console::Write ("Hello World\n");
I was expecting the output text to appear in the Visual C++ "Output" window:
there are two choices there: Debug and Build, but my output text is in
neither.
I understand that my program is not, strictly speaking, a "console program",
but certainly there must be a way to write text to stdout and veiw it?
Question: Where does output text appear when written with Console::Write()
or printf()?
trivial, created with the Program-creation wizard: used the .NET "Form"
template. The program has a trivial single-pane form GUI.
I've got some stdout print statements in the code ... but I cannot find
where in the world the output text is appearing. For printing I tried both:
printf ("Hello world\n");
and
Console::Write ("Hello World\n");
I was expecting the output text to appear in the Visual C++ "Output" window:
there are two choices there: Debug and Build, but my output text is in
neither.
I understand that my program is not, strictly speaking, a "console program",
but certainly there must be a way to write text to stdout and veiw it?
Question: Where does output text appear when written with Console::Write()
or printf()?