void main(){ int arr[10]={1,2}; arr[11]=10; arr[1]=arr[11]+arr[0]; printf("%d",arr[1]);}如题若在函数中调用一个不存在的空间会怎样造成的数据损坏? 查看完整描述