[求助]如何定义不定长数组?
如何定义不定长数组?
谢谢
//我的意思不是这个..
//我写了个测试程序有些问题,
//我是用指针定义不定长数组的.
//你们看看有什么问题.
#include <stdio.h>
int main(void)
{
int* p = new int;
int count = 0;
while(getchar()!='\n')
{
scanf("%d", p + count);
count++;
}
for(int j = 0; j<count; j++)
{
printf("%d ", *(p+j));
}
delete p;
return 0;
}
[此贴子已经被作者于2007-9-22 15:18:53编辑过]