🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

How do I display text?

Started by
0 comments, last by Stephen R 19 years, 4 months ago
How would I display text with coordinates on the console screen in C++? Instead of: cout << "Hello World!" << endl; If I want to display it at a certain position on the console screen, what command would I use? In TI-BASIC it would be: Text(1,1,"Hello World!") What would the equivalent of that be in C++?
_______________________________________________________________________________________He's a real no where man, sitting in his no where land, making all his no where plans for nobody...
Advertisement
Assuming you are using windows then you should look into the SetConsoleCursorPosition function.

This topic is closed to new replies.

Advertisement