#include <stdlib.h> 
 
int main(void){  
    int *array = calloc(42, sizeof(int));

    return array == NULL;
}