atoi用法
Posted shinered
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了atoi用法相关的知识,希望对你有一定的参考价值。
来自头文件 #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用法的主要内容,如果未能解决你的问题,请参考以下文章