"C" beginner help ask:
Wesley Smith
wesley.hoke@gmail.com
Tue Jun 12 06:09:00 GMT 2007
have a look at the sprintf function
http://www.cppreference.com/stdio/sprintf.html
i.e.
char string[100];
int val = 909
sprintf(string, "%d", val);
wes
On 6/11/07, Gordiano <sagrav@racsa.co.cr> wrote:
> I want to convert a one or few digits integer in a string, for example
> 5557..., so each one of the four digits be a char, then a char array of
> five elements (including the null one) makes the string.
>
> I've tried with "cast", char pointers to an array, etc... but no good
> results.
> =================================
> /* gcc -Wall temp.c -o temp */
>
> int main ()
> {
> int foo = 5557;
> char *cfoo[5];
> ... ????
> return 0;
> }
> =================================
> thanks for help
>
> misingo
> www.astrocosas.com
>
>
>
More information about the Gcc-help
mailing list