So I have a GUI program and for some reason it does not let me debug using printf(). When I use printf(), it does not go to the Visual Studio debugger for some reason.
Anyways, I wanted to make my own separate window that opens up when the GUI opens up, and basically be able to feed information into that console and talk to it.
For example:
void talk(std::string info){
//Add the value of info to the next line in the console
}
Anyone know how to do this? Basically create a command line and talk to it so I can see output:
CommandLine c;
c.talk("hey!");