标签: c pointers malloc
我在一些在线资源上看到,他们为n个整数数组分配了一块内存,如下所示:
memory = (int*) malloc(n*sizeof(int))
(int*)在这里的作用是什么?
(int*)