填空题

以下程序运行输入65<回车>后,能否输出结果、结束运行(请回答能或不能)______。
#include<stdio.h>
main()
char c1, c2;
 scanf("%c", &c1);
 while(c1<65 || c1>90) scanf("%c", &c1);
 c2=c1+32;
 printf("&c, &c\n", c1, c2);

【参考答案】

不能