我用 C 写了一个简单的程序:
#include <stdio.h>
main(){
int a[20], b[20];
int n, i;
printf("Enter a number: ");
scanf("%d", &n);
for(int j=0; j<n; j++){
printf("Enter a number for a[%d]: ", j);
scanf("%d", a[j]);
printf("\n");
}
}
此代码编译但在运行时n
大于 2 并且当向数组中输入第二个数字时发生崩溃。
我不明白为什么它崩溃了,请给我解释一下。