单选题 有以下程序 #include main() { char a = 'H'; a = (a >= 'A' && a <= 'Z') ? (a - 'A' + 'a') : a; printf("%c/n", a); } 程序运行后输出结果是
【正确答案】 D
【答案解析】