**在C语言中意味着什么?

时间:2014-09-13 08:45:43

标签: c pointers

请问有人能解释一下这段代码是什么意思吗?

  int **d= (int**)malloc((m+1)*sizeof(int));

d和(int)的那些**是什么?它们是否与指针有关?

1 个答案:

答案 0 :(得分:3)

int** d; //pointer to a pointer to an integer