Windwhistles, C++ provides the Input/Output Stream library, better known as iostream. Here's a basic example:
1 2 3 4 5 6 7 8
#include <iostream>
int main()
{
std::cout << "My name is Bob. Bob says, \"Hello world!\"" << std::endl;
return 0;
}
This syntax may be a bit confusing. If you have questions, just ask around. You'll find yourself both ashamed and shunned if you ask obvious questions though (as this is reality). I'd suggest both reading a Beginner's Book (although be warned that you'll need some dedication) and looking at a good STL and STD reference:
but if you plan on putting color, fonts or doing some fancy things in your console I would advise you not to. It would be quite complicated platform dependent (all this movetoXY and system() are platform specific commands).
Choose to program using a library which provides GUI like Qt mentioned before.
If on the other hand you meant something else just say what it is.