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

atoi用法

时间:2018-10-28 16:53:01      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:class   字符串   return   style   字符串转换   const   val   fgets   printf   

来自头文件 #include <stdlib.h>

atoi()函数用来将字符串转换成整数(int)

int atoi(const char* str) ;

从流中获取字符串:

char* fgets(char*str, int num, FILE*stream );

num: 最大字符个数,包括终止符号

stream:stdin

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

int main()
{
    int i;
    char buffer[256];
    printf("Enter a number:");
    fgets(buffer, 256, stdin);
    i = atoi(buffer);
    printf("The value entered is %d.", i);
    return 0;

}

 

atoi用法

标签:class   字符串   return   style   字符串转换   const   val   fgets   printf   

原文地址:https://www.cnblogs.com/Shinered/p/9865979.html

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