I know this has probably been asked a thousand times, and I've searched all through the forums and I'm still getting errors..
I've triedCode:char Space[255];
long lNumber;
lNumber = 223538;
And from what I can work out, they either do nothing, or are converting the number into actual ascii characters. I simply wantCode:sprintf(space, "%i", (int)lNumber);
itoa((int)lNumber, space, 10)
*(long*)space=lNumber;
Space = "232538";
as such.
Thanx
