#include #include #include #ifdef DEBUG #include "memcheck.h" #endif int main() { char *word; word = malloc (256); strcpy (word, "Hello"); printf ("%s\n", word); free (word); return 0; }