单选题 若有以下程序: #include main() { char x='5'; x++; printf(''%d,%d\n'',x一'5'+20,x一'5'); } 执行后的输出结果是( )。
【正确答案】 A
【答案解析】解析:C语言中字符是特殊的一类整数,x++='6'所以x一'5'=1。