在 C 或 C 中,字元值儲存為 ASCII 值。要將 int 轉換為 ASCII,我們可以將字元「0」的 ASCII 值與整數相加。讓我們來看一個將 int 轉換為 ASCII 值的範例。
#include<stdio.h> int intToAscii(int number) { return '0' + number; } main() { printf("The ASCII of 5 is %d\n", intToAscii(5)); printf("The ASCII of 8 is %d\n", intToAscii(8)); }
The ASCII of 5 is 53 The ASCII of 8 is 56
以上是將一個整數轉換為ASCII字元在C/C++中的詳細內容。更多資訊請關注PHP中文網其他相關文章!