3.2 在C语言中字符按其对应的ASCII码值来存储的,一个字符占一个字节。
3.3 由于字符常量按照整数存储,所有字符型可以参与像整型一样的算术运算。
#include <stdio.h>
int main(void) {
// 字符和整型之间的转换
char c = 'A';
printf("c=%c,c=%d\n", c, c);
// 'A' 和 'a' 之间相差32
int a = 97;
printf("a=%d,a=%c", a, a);
printf("打印ASCII表:\n");
for (int i = 0; i <= 127; i++) {
printf("%c ", i);
if (i % 10 == 0) {
printf("\n");
}
}
return 0;
}
该博客教程视频地址:http://geek99.com/node/967
原文出处:http://geek99.com/node/824#