填空题

已知字符’A’的ASCII码为65,以下程序运行后的输出结果是
#include <stdio.h>
main( )
char a,b;
a=’A’+’5’-’3’; b=a+’6’-’2’;
printf( "% d% c\\n", a, b);

【参考答案】

67G