请知道我对 C 和一般指针还是很陌生......这是一个类,所以我不要求明确的代码,只是帮助理解这些概念。
我正在尝试创建一个循环以将随机值分配给结构中的 int。当我将值分配给指针或数组的当前迭代时,就会出现问题。
struct student{
int id;
int score;
};
struct student* allocate(){
/*Allocate memory for ten students*/
int ROSTER_SIZE = 10;
struct student *roster = malloc(ROSTER_SIZE * sizeof(struct student));
/*return the pointer*/
return roster;
}
void generate(struct student* students){
/*Generate random ID and scores for ten students, ID being between 1 and 10, scores between 0 and 100*/
int i = 0;
for (i = 0; i < 10; ++i) {
students[i]->id = i + 1;
students[i]->score = rand()%101;
}
现在,根据我的理解,这很可能是不正确的,我应该能够students[i]
为每次迭代分配值,但 VS 2010 告诉我“表达式必须具有指针类型”。不是已经是指针了吗?它作为指针传递给函数,对吗?