blackeyrichards
Programmer
This is (hopefully) just a quicky. How do I convert an int to a character array?
I.E., I want to write a correct/working version of this:
int numI = 34;
char numA[255] = (char[255]) numI;
cout<<numA;
Gives the output:34
Thanks,
Paul
I.E., I want to write a correct/working version of this:
int numI = 34;
char numA[255] = (char[255]) numI;
cout<<numA;
Gives the output:34
Thanks,
Paul