通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
有以下程序(字母A的ASCII代码为65)
#include <stdio.h> main() { char c1 ='A',c2 ='Y'; printf("%d, %d\n",c1,c2); }
程序运行后的输出结果是( )。