运行 ❯
获取您的
自己的
网站
×
更改方向
更改主题,深/浅
转到 Spaces
#include <stdio.h> #include <stdlib.h> int main() { // Allocate memory for a number of items int numItems = 15; int *myArray = malloc(numItems * sizeof(int)); // Display the contents of the memory for(int i = 0; i < numItems; i++) { printf("%d ", myArray[i]); } // Free the memory free(myArray); myArray = NULL; return 0; }
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0