[单选题]
有以下程序
#include <stdio.h>
main()
{
char a = 'H';
a = (a>='A' && a<='Z') ? (a+32):a;
printf("%c ",a);
}
程序运行后的输出结果是( )。
A.h
B.H
C.A
D.a
参考答案与解析: