#include #include int main() { void *m; printf("Malloc test\n"); if(!malloc(100)) { perror("malloc"); return 1; } return 0; }