下面代码有什么错误?
18 查阅
参考答案:
Void test1()
\r\n
{
char string[10];
char *str1=\"0123456789\";
strcpy(string, str1);
}
数组越界
参考答案:
Void test1()
\r\n
{
char string[10];
char *str1=\"0123456789\";
strcpy(string, str1);
}
数组越界