ASCII表是一个包含了128个字符的字符编码表,其中包括了数字、字母、标点符号和一些特殊字符。在C语言中,可以通过将字符类型的变量转换为整数类型来获取该字符的ASCII码值。
下面是一些使用ASCII表的例子:
#include <stdio.h>
int main() {
char ch = 'A';
int ascii = ch;
printf("ASCII value of %c is %d\n", ch, ascii);
return 0;
}
输出:
ASCII value of A is 65
#include <stdio.h>
int main() {
int ascii = 65;
char ch = ascii;
printf("Character for ASCII value %d is %c\n", ascii, ch);
return 0;
}
输出:
Character for ASCII value 65 is A
#include <stdio.h>
int main() {
int i;
for (i = 0; i <= 127; i++) {
printf("Character for ASCII value %d is %c\n", i, i);
}
return 0;
}
这个例子会打印从ASCII值0到127对应的所有字符和它们的ASCII码值。
希望以上例子可以帮助你理解如何使用ASCII表。