怎么整數(shù)類型轉(zhuǎn)化為字符串類型?
舉例:inta=12345;charstr[256];sprintf(str,"%d",a);或者#include<stdlib.h>inta=12345;charstr[256];itoa(a,str,10);//后面的10表示十進(jìn)制
怎么整數(shù)類型轉(zhuǎn)化為字符串類型?
舉例:inta=12345;charstr[256];sprintf(str,"%d",a);或者#include<stdlib.h>inta=12345;charstr[256];itoa(a,str,10);//后面的10表示十進(jìn)制