Image

Imageskreyola wrote in Imagecpp

Greetings.

Is there any way to get numeric data into character arrays? I have a function that returns an int (e.g. "1234567"), but I want to string some of these results together (e.g. "123456712343581234763") for display, so I thought I would use strings (char arrays), since I can then use strncat. Is this a right way to do this, or should I multiply by 10000000 and concatenate them as straight numeric data?