#include <stdio.h>char* John(char *input) //1
{ //2
char* temp = "abcedf"; //3
input[0] = temp[0]; //4 printf(" %s \n",input); //5 return temp; //6
} //7第4行,有问题吗?
为什么在BC下可以编译通过,正确执行,而在VC下只能编译通过,而不能正确执行。环境 win2000p + vc6.0 +sp5 +prosser sp5