标签:申请 system 大于 stdio.h 程序 就会 malloc 注意 use
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
scanf("%d",&a);
int *p=(int *)malloc(a*4);//注意:因为malloc是byte的,所以这里要乘以4,不然free的时候程序就会奔溃,因为使用的空间大于申请的空间。
for(int i=0;i<a;i++)
{
scanf("%d",&p[i]);
}
for(int i=0;i<a;i++)
{
printf("%d ",p[i]);
}
free(p);
system("pause");
return 0;
}
标签:申请 system 大于 stdio.h 程序 就会 malloc 注意 use
原文地址:http://www.cnblogs.com/answer727/p/6917098.html