输入一正整数,将其转化为字符串的c语言代码
时间: 2023-08-29 14:06:56 浏览: 132
整数与字符串转换的C实现
5星 · 资源好评率100%
下面是将正整数转化为字符串的C语言代码:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
int num = 12345; // 假设需要转化的正整数为12345
char str[20];
sprintf(str, "%d", num);
printf("%s\n", str);
return 0;
}
```
在上面的代码中,我们使用了`sprintf`函数,它可以将一个格式化的字符串写入指定的字符数组中。在这里,我们将整数`num`转化为字符串并存储到`str`字符数组中,然后通过`printf`函数输出转化后的字符串。
阅读全文