4个回答
展开全部
//输入任意一个数字,转换为字符串输出
#include <stdio.h>
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 <stdio.h>
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<stdio.h>
void main()
{
char s[]="0";
printf("%s\n",s);
}
结果:
0
Press any key to continue
不知这是不是你想要的代码:
#include<stdio.h>
void main()
{
char s[]="0";
printf("%s\n",s);
}
结果:
0
Press any key to continue
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
数字0对应的ASCII是0x30,用一堆0x30就可以表示一个全是零的字符串了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询