91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

C語言如何把字符型轉為int型

小億
116
2024-05-20 09:14:21
欄目: 編程語言

在C語言中,可以使用標準庫函數atoi()或者scanf()來將字符型轉換為整型。

  1. 使用atoi()函數:
#include <stdio.h>
#include <stdlib.h>

int main() {
    char c = '5';
    int num = atoi(&c); // 將字符型變量轉換為整型

    printf("The integer value is: %d\n", num);

    return 0;
}
  1. 使用scanf()函數:
#include <stdio.h>

int main() {
    char c = '5';
    int num;

    sscanf(&c, "%d", &num); // 將字符型變量轉換為整型

    printf("The integer value is: %d\n", num);

    return 0;
}

0
牡丹江市| 彭水| 大洼县| 富平县| 白水县| 兴义市| 连南| 莱阳市| 五寨县| 和政县| 四子王旗| 防城港市| 兴国县| 万山特区| 徐水县| 舞钢市| 中卫市| 左云县| 嵊泗县| 黄冈市| 建水县| 页游| 南通市| 怀远县| 白城市| 沾化县| 九台市| 信阳市| 城口县| 繁昌县| 寻乌县| 鄂伦春自治旗| 修武县| 全南县| 福建省| 金堂县| 墨竹工卡县| 东源县| 西乡县| 红原县| 嘉义市|