Date: Mon, 29 Apr 1996 21:38:54 +0800 (GMT+0800) From: Orlando Andico To: Rikard Thunberg cc: djgpp AT delorie DOT com Subject: Re: atoi <> itoa (?) In-Reply-To: <3183E793.1ED4@algonet.se> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Sun, 28 Apr 1996, Rikard Thunberg wrote: > I need the reverse function of atoi(), say itoa() for UNIX and MSDOS (djgpp). Unfortunately, I can't find such > function (ANSI C). > Please help. > why don't you try sprintf (string, "%d", your_int); ?