**运算符是什么意思,C?

时间:2015-08-23 12:14:12

标签: c operators

**运算符是什么意思? “int * or”只是确保它将是一个int指针作为第二个参数,但“Item ** w1”是做什么的?

例如

;

typedef struct item{
 int data;
 struct item *next;
} Item;

void Inp(Item **w1, char c[], int *or) //writing numbers to a list
{
*or = scanf("%s" , c);
Conv(w1, c);
}

1 个答案:

答案 0 :(得分:3)

项目** w1是指向Item的指针。

相关问题