void main()
{
int c=0;
while (c<=255)
{
printf("%c",c++); /*输出每个ASCII字符*/
if(c%32==0)
printf("c=%d\n",c); /*显示已输出字符个数*/
}
}