11 Mart 2011 Cuma

Convertion the integer to string in C!!

It has really basic way to do. Here is the code!

int main{
int i = 232324;
char numChar[10];
sprintf(numChar, "%d", i);
return 0;
}

Hiç yorum yok:

Yorum Gönder