Date: Tue, 30 Mar 1999 09:41:23 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Heliophobe cc: djgpp AT delorie DOT com Subject: Re: converting variables In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, 29 Mar 1999, Heliophobe wrote: > char buffer[100]; > > buffer=itoa(i); //I[nteger] to A[scii] > buffer=ftoa(f); //F[loat] to A[scii] DJGPP doesn't have `ftoa', and I don't think I've ever seen it in any other compiler. Use `sprintf' instead.