下面程序的输出结果是( ).#include <stdio.h> main() { int x='f'; printf("%c\n

日期:2013-11-21 01:06:52 人气:2

下面程序的输出结果是( ).#include <stdio.h> main() { int x='f'; printf("%c\n

ASCII 码 字母按 顺序排列。 例如小写字母次序: a,b,c,d,e,f,g,.....x,y,z , 相邻字母差别是1,从a增到z 例如大写字母次序: A,B,C,D,.....X,Y,Z, 相邻字母差别是1,从A增到Z 你不需要去记忆它们的编码到底 是几,只要知道按次序排列的。 int x='f'; x-'a' 就是 'f' - 'a' 。 按a,b,c,d,e,f 顺序, ASCII 码 差 5, &
    A+
热门评论