F.Thomas
0
Q:

integer to stringc

String s = String.ValueOf(x); //converts a int x to a String s
5
String s = String.ValueOf(x); //converts a int x to a String s

//or

String s = Integer(x).toString();	//converts a int x to a String s
2
int someInt = 368;
char str[12];
sprintf(str, "%d", someInt);
1
Integer.toString(n) // converts n to String
1

New to Communities?

Join the community