码迷,mamicode.com
首页 > 编程语言 > 详细

C++ Studio( 一 ) ----------- <stdlib.h> atoi() --------- 将string转换为int型

时间:2015-09-19 19:35:22      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

atoi()函数

    原型:int  atoi (const  char  *nptr)

    用法:#include  <stdlib.h>

    功能:将字符串转换成整型数;atoi()会扫描参数nptr字符串,跳过前面的空格字符,直到遇上数字或正负号才开始做转换,而再遇到非数字或字符串时(‘\0‘)才结束转化,并将结果返回。

    说明:atoi()函数返回转换后的整型数。

    举例:

  

 1 #include <stdio.h>  
 2 #include <stdlib.h>  
 3   
 4 int main()  
 5 {  
 6     char a[] = "-100";  
 7     char b[] = "456";  
 8     int c = 0;  
 9       
10     c = atoi(a) + atoi(b);  
11       
12     printf("c = %d\n",c);  
13 } 

 

    结果:

技术分享

C++ Studio( 一 ) ----------- <stdlib.h> atoi() --------- 将string转换为int型

标签:

原文地址:http://www.cnblogs.com/dudu580231/p/4821950.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!