Linux 拨号vps windows公众号手机端

c语言字符转数字怎么实现

lewis 8年前 (2017-01-10) 阅读数 8 #程序编程
文章标签 c语言

在C语言中,可以使用atoi()函数将字符串转换为整数。示例如下:

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

int main() {
    char str[] = "12345";
    int num = atoi(str);

    printf("The converted number is: %d\n", num);

    return 0;
}

运行结果为:

The converted number is: 12345

此外,还可以使用sscanf()函数来实现字符转数字,示例如下:

#include <stdio.h>

int main() {
    char str[] = "67890";
    int num;
    
    sscanf(str, "%d", &num);

    printf("The converted number is: %d\n", num);

    return 0;
}

运行结果为:

The converted number is: 67890
版权声明

本文仅代表作者观点,不代表米安网络立场。

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

热门