数组长度与地址空间有什么联系?不吝赐教
定义了一个长为80的数组,WAVE提示:ADRESS SPACE OVERFLOW !
直至改成item[74]采编译通过 ,为什么???
--------------------------------------------------------------------------------------------------------------
main ()
{
char item[80];
clrscr();
printf("\nEnter a string:");gets(item);
printf("\nThe string is :\%s\n",item);
fun(item);
printf("\n\nThe string of changing is:\%s\n",item);