int 类型0~9的整数转换 char型 ,加上'0'即可,例如A=0时:
int A = 0;
char B = A + '0';
printf("%c\n", B);
输出结果为字符0
//输入任意一个数字,转换为字符串输出
#include
void main()
{
int n = 0;
char str[10]={0};
printf("input a number:");
scanf("%d", &n);
sprintf(str, "%d", n);
printf("the string is:[%s]\n", str);
}
你好!!
不知这是不是你想要的代码:
#include
void main()
{
char s[]="0";
printf("%s\n",s);
}
结果:
0
Press any key to continue
数字0对应的ASCII是0x30,用一堆0x30就可以表示一个全是零的字符串了