我有使用鏈接lists.when我編譯隊列的程序,它具有以下錯誤:隊列實現
expected ‘)’ before ‘*’ token >>in 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;
}
主要在哪裏?你是從一個函數內調用dimiourgia()嗎?看起來你忘記了一個代碼中的';'或')',這個代碼不在這裏。 – nmichaels 2011-03-01 17:34:29
或者如果你可以告訴我錯誤的含義是什麼,它「忘了」;當然? – Dchris 2011-03-01 17:40:19