C语言itoa()函数和atoi()函数

时间:2023-03-08 16:04:17

以下是用itoa()函数将整数转换为字符串的一个例子:

# include <stdio.h>
# include <stdlib.h>
void main (void)
{
int num = ;
char str[];
itoa(num, str, );
printf("The number 'num' is %d and the string 'str' is %s. \n" ,
num, str);
}

itoa()函数有3个参数:第一个参数是要转换的数字,第二个参数是要写入转换结果的目标字符串,第三个参数是转移数字时所用 的基数。在上例中,转换基数为10。10:十进制;2:二进制...

itoa并不是一个标准的C函数,它是Windows特有的,如果要写跨平台的程序,请用sprintf。是Windows平台下扩展的,标准库中有sprintf,功能比这个更强,用法跟printf类似:

char str[255];
sprintf(str, "%x", 100); //将100转为16进制表示的字符串。

以下为atoi用法

#include <stdio.h>
#include <stdlib.h>
#include <string.h> int main()
{
int val;
char str[]; strcpy(str, "");
val = atoi(str);
printf("字符串值 = %s, 整型值 = %d\n", str, val); strcpy(str, "runoob.com");
val = atoi(str);
printf("字符串值 = %s, 整型值 = %d\n", str, val); return();
}