On 14 Mar 2007 06:06:15 -0700, e2esunil mudulakar <[EMAIL PROTECTED]> wrote:
> hello all
> iam want to convert a numeric to string in KEIL software.
>
> As we convert the number into string by using itoa

As you've found out, itoa() isn't a Standard function.

>     Plz help me how can i convert numeric into string..
> with any other style (classic ).

char numstring[ENOUGH];
sprintf(numstring, "%d", number);

-- 
PJH
Aio, quantitas magna frumentorum est

Reply via email to