码迷,mamicode.com
首页 > 其他好文 > 详细

atoi():str转int

时间:2019-12-05 18:51:46      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:target   字符   返回值   https   ret   库函数   const   lib   func   

描述

C 库函数 int atoi(const char *str) 把参数 str 所指向的字符串转换为一个整数(类型为 int 型)。

声明

下面是 atoi() 函数的声明。

int atoi(const char *str)

参数

  • str -- 要转换为整数的字符串。

返回值

该函数返回转换后的长整数,如果没有执行有效的转换,则返回零。

实例

下面的实例演示了 atoi() 函数的用法。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main()
{
   int val;
   char str[20];
   
   strcpy(str, "98993489");
   val = atoi(str);
   printf("字符串值 = %s, 整型值 = %d\n", str, val);

   strcpy(str, "runoob.com");
   val = atoi(str);
   printf("字符串值 = %s, 整型值 = %d\n", str, val);

   return(0);
}

参考资料:

菜鸟教程

atoi():str转int

标签:target   字符   返回值   https   ret   库函数   const   lib   func   

原文地址:https://www.cnblogs.com/xumaomao/p/11990771.html

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