atoi atof atol

Posted heheheda

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了atoi atof atol相关的知识,希望对你有一定的参考价值。

在c语言中提供了把字符串转化为整数的函数,并没有提供把整数转化为字符串的函数

atoi是标准的库函数

itoa不是标准的库函数(在vs可编译,其它系统中未知)

atol把一个字符串转化为long类型

 1 #include<stdio.h>
 2 #include<stdlib.h>
 3 #include<string.h> 
 4 
 5 int main()
 6 {
 7     char a[100] = "123";
 8     char b[100] = "400";
 9     int i = 0;
10     
11     i = atoi(a) + atoi(b);   //atoi功能是把字符串转化为整数int,需要加头文件<stdlib.h>
12     printf("%d\n", i);
13     
14     char c[100] = "3.5";
15     double f = atof(c);      //atof把一个小数形式的字符串转化为一个浮点数 
16     printf("%lf\n", f); 
17     
18     int num = 26;
19     sprintf(a, "%d", num);   //sprintf实现把数字num转化为字符串放入a中 
20     printf("%s\n", a);
21     char d[100] = "abc";
22     strcat(d, a);        //连接字符串,放入d中 
23     printf("%s", d);
24     
25     return 0; 
26 }

 

以上是关于atoi atof atol的主要内容,如果未能解决你的问题,请参考以下文章

atof atoi atol strlod等函数

strtok/atoi/atof/atol函数用法 详解

字符数字转换 atoi 与 strtol

类型转化

字符串小技巧

atoi函数和std::stoi函数的不同点