atoi和atof的用法

   

【整理】Linux内核中的atoi,itoa等函数 

   读取文件时,如果我们希望是得到的int型,比如
从"/sys/devices/platform/lcd-backlight/leds/lcd-backlight/brightness"这里读取,显然我们希望是int型
但在read系统调用时从文件流中读出来的是char类型,所以读出来后需要转化成int,这 就需要atoi了。
注意要包含头文件#include <stdlib.h>
 
 
这里主要是atoi和atof的用法
#include "stdio.h"
#include "stdlib.h"
main()
{
 char *p="1234567";
 int x;
 x=atoi(p);
 printf("%d\n",x);
}

若果写的是char*p="1234.567"
则是 x=atof(p);

C语言库函数名: atoi  
功 能: 把字符串转换成整型数.  
名字来源:array to integer 的缩写.   
函数说明: 
atoi()会扫描参数nptr字符串,如果第一个字符不是数字也不是正负号返回零,否则开始做类型转换,之后检测到非数字或结束符 \0 时停止转换,返回整型数。   
原型: int atoi(const char *nptr);  
需要用到的头文件: #include <stdlib.h> 

而atof是将字串转换成浮点型数

你可能感兴趣的:(atoi和atof的用法)