Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you display characters starting in a certain position?

Status
Not open for further replies.

Guest_imported

New member
Joined
Jan 1, 1970
Messages
0
I taught myself to use TI-BASIC, the primary programming language of the TI series of graphing calculators.

But now I'm taking a C++ class and I'm wondering what the equivalent of the Output command is.

For those of you who aren't familiar with TI-BASIC, the output command allows you to display a character or string of characters starting in a certain position. It allows text-based animation.

Anyone have a clue what I'm talking about?
 
To output to the screen use either

printf or cout

Matt
 
first position your cursor with gotoxy(int x,int y);
then use cout<<&quot;hello&quot;; or printf(&quot;hello&quot;); The Muppeteer.

themuppeteer@hotmail.com

Don't eat yellow snow...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top