作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何创建动态数组?我尝试使用该代码:
#include <stdlib.h>
#include <stdio.h>
int main()
{
int size=0,*value,array[size];
printf("How many array elements do you need?");
scanf_s("%i",&size);
value = (int *)malloc(size*sizeof(int));
printf("Your array has now %i elements.Here are the contents:",size);
for(i=0;i<size;i++)
{
printf("%i",array[i]);
}
return 0;
}
我怎样才能意识到这一点?我的程序(Visual Studio 2013)出现错误。
最佳答案
#include <stdlib.h>
#include <stdio.h>
int main(){
int i, size, *value;
printf("How many array elements do you need?");
scanf_s("%i", &size);
value = (int *)malloc(size*sizeof(int));
printf("Your array has now %i elements.Here are the contents:\n", size);
for(i=0;i<size;i++){
printf("%i\n", value[i]);//uninitialize
}
return 0;
}
关于c - 如何在c中创建动态大小的数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23239986/
我是一名优秀的程序员,十分优秀!