C语言,想用malloc分配一个指针数组,指针指向int型,怎么写?

2024-11-08 06:31:49
推荐回答(1个)
回答1:

int length=20;//数组长度
int *p=(int*)malloc(sizeof(int)*length)