我必须使用一个如下所示的函数:
void pushNode (struct onode** head, struct onode* node) ;
我试着用这个:
struct onode *head = NULL;
head=malloc(sizeof(struct onode));
struct onode *tempO;
pushNode(*head,tempO);
我在终端中收到此错误:
expected ‘struct onode **’ but argument is of type ‘struct onode’
我不知道该放什么而不是*head
. 您可以对此有所了解的任何信息将不胜感激。
谢谢