#include <stdio.h>
void main()
{
char c1,c2;
c1=101;c2=104; /*为字符变量赋值*/
printf("% c,%c\n",c1,c2);
printf("%d,% d\n",c1,c2);
}