#include "stdio.h"main(){char a,b;a=1;b='1';
printf("%c,%c",a,b);}分别输出多少?为什么呢?格式控制符不都是%c么?都是按照字符输出的么?不解