c語言怎么把字符型變成數(shù)值

小億
101
2024-08-12 12:52:34
欄目: 編程語言

在C語言中,可以使用庫函數(shù)atoi()來將字符型轉(zhuǎn)換成數(shù)值。該函數(shù)的原型為int atoi(const char *str),它將參數(shù)str指向的字符串轉(zhuǎn)換成一個(gè)整數(shù)并返回。

示例代碼如下:

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

int main() {
    char c = '5';
    int num = atoi(&c);
    
    printf("字符型變成數(shù)值: %d\n", num);
    
    return 0;
}

在上面的示例中,將字符'5'轉(zhuǎn)換成整數(shù)并輸出結(jié)果。

0