У меня есть программа с очередями, использующими связанные списки. Когда я компилирую ее, она имеет следующую ошибку:
ожидается ‘)’ до токена ‘*’ >> в error_line
///USEFUL PART OF THE PROGRAM
//queue struct
typedef struct{
int embros,piso,adeia;
int pinakas[PLITHOS];
}Q;
int main(){
Q oura_apo; //define a new queue
dimiourgia(&oura_apo);//create the new queue
return 0;
}
//this function creates a new empty list
void dimiourgia(Q *oura){ //this is error_line
oura->embros=0;
oura->piso=0;
}