{{ score }}
  # your_comment_here
Command: calloc

Use: Similar to malloc, but allocates an array

Signature: void * calloc(size_t nmem, size_t size)

Easier to read: void * calloc(size_t number_of_elements, size_t size_of_one_element)

Example:
```c
int * myArray = calloc(5, sizeof(int)) //creates an array with space for 5 integers
```

Note: Cannot be used to allocate for arrays declared with square brackets: []