例3.6向字符变量赋以整数。
   main()
{char c1,c2;
c1=97;
c2=98;
printf("%c %c\n",c1,c2);/*以字符形式输出*/
printf("%d %d\n",c1,c2);/*转换为整数形式输出*/