#include <stdio.h> main() {
char c1,c2; c1='A'+4; c2=c1-4;
printf( "%c,%d\n",c1,c2);
}
已知字母A的ASCII码为65,程序运行后的输出结果是( )