标签: c
此刻我有了这个定义:
int pipefds[10][2];
但是我想动态地计算它的大小,并具有以下内容:
int *pipefds[2] = malloc(10 * sizeof(int[2]));
对不起,这个问题似乎很愚蠢,但我需要问一下。