C int à la chaîne

int i = 69;
char str[256];

itoa(i,str,10); //Base 10

//str = "69"
GitanDesBois