为什么ASCII所对应的字符只能输出到128,再往后就全是问号了?????
为什么ASCII所对应的字符只能输出到128,再往后就全是问号了?????
程序代码:#include <stdio.h>
#include <stdlib.h>
#include <string.h>
main()
{int a[256];
int x,y=0,b=252;
for(x=0;x<256;x++)
{a[x]=y;
y++;
}printf("%c ",b);
for(x=0;x<256;x++)
printf("%c ",a[x]);
}









