#include <stdio.h> int main() { int arr[] ={1,2,3,4}; arr[4] =123; printf("%d",arr[4]); }
这里面数组越界了吗?想要在此数组加入元素应如何处理
越界了 想要添加得用指针了