Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
void itoa(int n, char *s) {
char i;
int n1;
if (n<0) {
n=-n;
*s++='-';
}
do
{
n1=n;
i=0;
while (1) {
if (n1<=9) {
*s++=n1+'0';
break;
}
n1=n1/10;
i++;
}
while (i) {
i--;
n1=n1*10;
}
n-=n1;
}while (n);
*s++=0;
}