标签: c pointers
int **d= (int**)malloc((m+1)*sizeof(int));
d和(int)的那些**是什么?它们是否与指针有关?
答案 0 :(得分:3)
int** d; //pointer to a pointer to an integer