Message-Id: <199903260051.TAA27851@delorie.com> Comments: Authenticated sender is From: "George Foot" To: Unigni Date: Fri, 26 Mar 1999 00:49:18 +0000 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: Displaying a number with Allegro CC: djgpp AT delorie DOT com X-mailer: Pegasus Mail for Win32 (v2.42a) Reply-To: djgpp AT delorie DOT com On 25 Mar 99 at 19:09, Unigni wrote: > I have a little problem: in Allegro, textout uses prints a string to the > screen, but what I want to do is print a number (integer). However, I'm > not sure how to convert an integer into a string... Any help will be > gratefully appreciated! Use `textprintf', or manually sprintf the number into a buffer and textout that. -- George