c语言中转换字符串函数 atoi函数

1、c语言中转换字符串函数 atoi将字符型转换为int型。

c语言标准函数库提供了字符串转换函数。 <stdlib.h>。

#include <stdio.h>
#include <stdlib.h>  //c语言标准函数库

int main(void)
{
    char str[128];
    printf("str: "); scanf("%s", str);
    
    printf("convert to int type: %d\n", atoi(str));
    return 0;
}

c语言中转换字符串函数 atoi函数

 

 

2、转换为double型

#include <stdio.h>
#include <stdlib.h> //c语言标准函数库 

int main(void)
{
    char str[128];
    printf("str: "); scanf("%s", str);
    
    printf("after converting to dougle type: %f\n", atof(str));
    
    return 0;
}

c语言中转换字符串函数 atoi函数

 

上一篇:[leetcode] 字符串转换整数 (atoi)


下一篇:LeetCode 8. String to Integer (atoi)