#define _GNU_SOURCE #include #include int main () { char *merow = malloc (9); sprintf (merow, "meowmeow"); printf ("%s\n", merow); free (merow); }