下面代码有什么错误?

13 查阅
下面代码有什么错误?

参考答案:

正确答案:

\r\n

Void test1()
{
char string[10];
char *str1=\"0123456789\";
strcpy(string, str1);
}
数组越界

错误