Image

Imagelone_wolf225 wrote in Imagecpp

Conversion?

Hey, I'm trying to convert a big array of digits (one number in each digit) to fit into a string

I know I have to append the actual characters of 1,2,3, etc, but I'm not sure how.

Like I have a huge array, say (using visual studio.net 2003) 1234567890987654321 (each digit in one element) and i want "1234567890987654321" and be able to print it out.

I've tried many ways like my string is named 'b' for example, temp = temp + (digits[counter] + '0') i know thats not right but any help here? thanks.