#include
#include
int main (void)
{
double * ptd;
int max;
int number;
int i=0;
puts("What is the maximum number of type double entries?");
scanf("%d",&max);
ptd = (double * )malloc(max * sizeof(double));
if(ptd == NULL)
{
puts("Memory allocation failed.Goodbye.");
exit(EXIT_FAILURE);
}
//ptd现在指向有max个元素的数组
puts("Enter the values(q to quit):");
while(i
printf("Here are your %d entries:\n",i);//这句建议最好不要把赋值和输出写在一起,最好分开写便于理解
number = i;
for(i = 0;i < number;i++)
{
printf("%7.2f",ptd[i]);
if( i%7 == 6)
putchar('\n');
}
if(i % 7!=0)
putchar('\n');
puts("Done.");
free(ptd);
return 0;
}
i
需要加一个malloc.h的头文件,即#include