Date: Fri, 25 Dec 1998 23:11:44 +0200 (EET) From: Toni Rasanen X-Sender: torasane AT paju DOT oulu DOT fi To: djgpp AT delorie DOT com Subject: Re: conversion question In-Reply-To: <01be301f$9a15ec40$LocalHost@default> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT Reply-To: djgpp AT delorie DOT com > come to the problem that I dont know how to convert a INT to at CHAR*. > I want the INT I to become a string so I can add a number, let's say '123' to Use itoa -function. For example; char txt[20]; itoa (intvalue, txt, 10); (last "10" is radix...). And resulting string of course is added normally to another string with strcat-function... /// Toni Räsänen /// torasane AT mail DOT student DOT oulu DOT fi \\\ Physicians ask how. Filosofians ask why. Dragons don't care.