以下程序的输出结果是( )。
#include<stdio.h> void main( ) { char c1='6',c2='0'; printf(“%c,%c,%d,%d\n”,c1,c2,c1-c2,c1+c2); }
(A)因输出格式不合法,输出出错信息
(B)6,0,6,102
(C)6,0,7,6
(D)6,0,5,7
Copyright ©