在C语言中,你可以使用字符类型(char)来表示单个字符,并使用算术运算符将其转换为数字。以下是一个简单的示例:
#include <stdio.h>
int main() {
char ch = '5'; // 定义一个字符变量ch,赋值为'5'
int num = ch - '0'; // 将字符变量ch转换为整数num
printf("The character '%c' represents the number %d.\n", ch, num);
return 0;
}
在这个示例中,我们将字符’5’存储在变量ch
中。然后,我们通过减去字符’0’(其ASCII码值为48)将字符转换为整数。最后,我们使用printf
函数输出结果。