以下程序运行后,输出结果是
main()
{
char arr[2][4];
strcpy(arr[0],"you”);
strcpy(arr[1],”me”);
arr[0][3]='&';
cout<<arr[0]<<endl;
}
you&me
you
me
err
发表评论