int WINAPI WinMain (HINSTANCE p1, HINSTANCE p2, LPSTR p3, int p4)
{

}

I want a console to pop up when I click a button,what's the proper way to do it?

UPDATE How do I output text to that console?

link|improve this question

37% accept rate
A console owned by your application? Or a console window in a new process? – James McNellis May 8 '10 at 4:43
Owned by my application. – httpinterpret May 8 '10 at 4:51
feedback

2 Answers

Try using AllocConsole()

http://msdn.microsoft.com/en-us/library/ms681944%28VS.85%29.aspx

link|improve this answer
feedback

check: http://msdn.microsoft.com/en-us/library/ms681944%28VS.85%29.aspx

link|improve this answer
How do I output text to that console? – httpinterpret May 8 '10 at 5:09
1  
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.