Integer to String

Which function should I use to convert an Integer to a String or Char format ?
Thanx

char foo[80];
int value = 1943743;

sprintf(foo, "%d", value);

Tank you very much...it worked just fine!!!!

Thanx