数组分配动态内存
标签:oid 数值 std class lib color span nbsp 输入
#include
#includeint main(void)
{
int n,i;
int *p;
printf("请输入序列个数:");
scanf("%d",&n);
p = (int*) malloc(sizeof(int)*n);//开辟动态内存区,将地址转换成int *型,然后在放在p1中。
printf("请输入序列数值:");
for(i=0;i)
{
scanf("%d",p+i);
}
printf("输入原序列数为:");
for(i=0;i)
{
printf("%d ",*(p+i));
}
printf("\n");
free(p);
system("pause");
return 0;
}
数组分配动态内存
标签:oid 数值 std class lib color span nbsp 输入
原文地址:https://www.cnblogs.com/wy9264/p/14300615.html
文章来自:
搜素材网的
编程语言模块,转载请注明文章出处。
文章标题:
数组分配动态内存
文章链接:http://soscw.com/index.php/essay/60840.html
评论