//Declaration: void *calloc(size_t num, size_t size);
//Return: returns a pointer to the first byte of the allocated region.
#include
#include
int main(void){
float *j;
j = calloc(100, sizeof(float));
if(!j) {
printf("Allocation Error\n");
exit(1);
}
}