是C ++的新手,我的指针遇到了困难。这是我写的代码

时间:2018-11-26 11:53:55

标签: pointers variables

   struct student{
    int studID;
    char name[80];
    double feesPaid;

} *studPtr[2], theStud;
char buffer[80];
studPtr = new student[2];

当我编译它时,它给我一个错误,指出分配不兼容的类型

main()::student*

main()::student*

0 个答案:

没有答案