一维动态数组的实现(c语言)

编程输入一个班的某课程的学生成绩,计算其平均分,然后输出。班级人数由键盘输入。

#include 
#include 


main()
{

    int *p = NULL,i,n,sum;
    printf("Please enter array numbers: ");
    scanf("%d",&n);

    p = (int*)malloc(sizeof(int)*n);

    if(p==NULL)
    {

        printf("No enough memory !\n");
        exit(0);
    }



    printf("Please input %d scores:",n);
    for (i=0;iscanf("%d",p+i);

    }


    sum = 0;

    for (i =0;iprintf("aver = %d\n",sum/n);
    free(p);

}

注意的是最后有个内存释放。还有就是因为堆空间是有限的,所以动态分配内存后,必须检查函数malloc()的返回值,确保使用前不是NULL,即非空指针,任何空指针均意味着它不指向任何对象,不应该使用它。如果使用空指针则可能会导致程序瘫痪。

你可能感兴趣的:(c语言)