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 ?
Asked
Active
Viewed 2,312 times
2
-
2Yes you can. Why not? – Dec 13 '13 at 17:37
-
http://stackoverflow.com/questions/13840942/visual-studio-2012-c-standard-output/13841522#13841522 – drescherjm Dec 13 '13 at 17:45
2 Answers
2
Yes you can, on linux it's will be almost from box on windows you must create console for application.What is your platform ?

sim
- 756
- 6
- 18
2
You should start with a normal GUI application of your choice. Calling AllocConsole will then add a console window to your application.

nvoigt
- 75,013
- 26
- 93
- 142
-
1Or you can start with a console application, and from there create any number of Windows. – Peter Dec 13 '13 at 17:48