#include #include int main() { int *ip; ip = (int *) calloc(1000, sizeof(int)); free(ip); free(ip); return 0; }