Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
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