Could I use gui for taking the input from the user and use console to print the output ? by other words, I mean could I mix both the windows or gui c++ with console application in one application ?
2 Answers
You should start with a normal GUI application of your choice. Calling AllocConsole will then add a console window to your application.
1 Comment
Peter
Or you can start with a console application, and from there create any number of Windows.