如何将数字转换成字符串

2024年11月18日 03:41
有1个网友回答
网友(1):

用sprintf就可以了:
#include
main(){
int x = 123;
char str[4];
sprintf(str, "%d", x);
printf("%s\n", str);
}