请读程序: # include<stdio.h> Char fun(char*c) (if(c<=’z’& & * c>=’A’) * c-=’A’-’a’ return * c; main() char s[81],* p=s; gets(s); while(* p) * p=fun(p);putchar(* p);p + +; puchar(’ n’); 若运行时从键盘上输入OPEN THE DOOR <CR>(<CR>表示回车),则上面程序的输出结果是 ( )
A.oPEN tHE dOOR
B.ope the door
C.OPEN THE DOOR
D.Open The Door