22 lines
486 B
C
22 lines
486 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
|
||
|
// Declare an integer array and an integer pointer
|
||
|
int *pData;
|
||
|
|
||
|
// Using calloc (same approach malloc)
|
||
|
pData = calloc ( 10000 , sizeof (int));
|
||
|
|
||
|
if ( pData == NULL)
|
||
|
{
|
||
|
printf ("\nMemory could not be allocated - terminating");
|
||
|
return -1; // Use minus one as we did not exit successfully
|
||
|
}
|
||
|
|
||
|
// We have our memory, make use of it here!
|
||
|
|
||
|
return 0; // Exit successfully
|
||
|
}
|