I have been wondering if there was a way to use a different window other than the CMD box, i hate that thing so much. Is there any other possible way to be able to compile the code and see it in a different, more appealing window?
Then use qt as ats15 said. Qt is a multi-platform ide that allows you to create a gui. You can also use other libraries I suppose to create a gui but qt is fairly simple to use.
I dont want to use a different compiler/IDE or whatever QT is, Ive used QT before and thats not what i want, i just want an alternative CMD window or something. Something nicer to look at basically. I cant believe no one made one already, i mean i know its probably not high in demand but still...
I really don't see why you would need a console that is "better to look at" personally. Why not build a GUI that can show you your output in a nice neat window if you really need a change?
Or even better make your own plugin for a text editor like Sublime text. You can make a plugin (Or just use something like SublimeREPO) that will show the output of the console inside of the text editor.
I cant believe no one made one already
Well as far as programming output goes that console does almost everything it was intended for. You have to realize the CMD console wasn't made to be the main source of IO for a user.
Like I said earlier...Qt is very simple to use and it is CROSS-PLATFORM.
The site references are very easy to use. Also you can download a thing called qt examples and that will show you have to do things and has the source code.
Well then I would highly highly recommend using Sublime Text 2 and downloading the plugin SublimeREPO which allows you to have a the CMD output on a nice looking area in the editor and I believe you can edit the highlighting also.
Here is a screenshot I just took of it from some testing I am doing for a competition problem http://prntscr.com/199r31 . The Python Script is up town and the output to the console is on the bottom. This works for about 20+ more languages including C++ and C.
Though I warn you it is not a full IDE like you might be used to. It is just a very nice text editor. But it includes much better features and plugins then any IDE I seen.
I was actually learning SDL, made a really simple game, but my C++ skills arent where they should be so I decided to quit learning it and commit all of my extra time to learning the Basics and the Intermediates of C++. Lazyfoo's tutorials are too hard for me to follow anyways :P.
> and commit all of my extra time to learning the Basics and the Intermediates of C++.
Yes. This is my take on it: You don't develop much programming or design skills by learning to use a GUI library. GUI is something that you learn if you have to. Unless high performance graphics is involved, it is almost always better to write the GUI as a front-end, typically using a scripting language. To which you hook up the C++ back end.