#include
<stdlib.h>
原型
:
int
atoi(
const
char
*str
)
以数字开头,当函数从str
中读到非数字字符则结束转换并将结果返回。
例如:int
num
=
atoi("1314.012")
int值为1314
1、atoi (表示 ascii to integer)是把字符串转换成整型数的一个函数,应用在计算机程序和办公软件中。
2、头文件: #include <stdlib.h>
3、它在Linux下的Vi编辑器能用
int atoi(const char *nptr) 函数会扫描参数 nptr字符串,会跳过前面的空白字符(例如空格,tab缩进)等。如果 nptr不能转换成 int 或者 nptr为空字符串,那么将返回 0 。特别注意,该函数要求被转换的字符串是按十进制数理解的。
扩展资料
范例:
1>
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
int n
char *str = "12345.67"
n = atoi(str)
printf("string = %s integer =%d\n", str, n)
return 0
}
执行结果
string = 12345.67 integer = 12345.000000
2>
#include <stdlib.h>
#include <stdio.h>
int main()
{
char a[] = "-100"
char b[] = "123"
int c
c = atoi( a ) + atoi( b )
printf("c = %d\n", c)
return 0
}
执行结果
c = 23
参考资料来源:百度百科—atoi()
itoa是广泛应用的非标准C语言扩展函数。由于它不是标准C语言函数,所以不能在所有的编译器中使用。但是,大多数的编译器(如Windows上的)通常在<stdlib.h>头文件中包含这个函数。在<stdlib.h>中与之有相反功能的函数是atoi。功能:把一整数转换为字符串。char *itoa(int value, char *string, int radix)头文件: <stdlib.h>程序例: #include <stdlib.h>#include <stdio.h>int main() { int number = 123456char string[25]itoa(number, string, 10)printf("integer = %d string = %s\n", number, string)return 0}欢迎分享,转载请注明来源:内存溢出
评论列表(0条)