#include #include int main (int argc, char**argv) { char *s; s = malloc(2); s[0] = 'c'; s[1] = '\0'; printf ("The string is %s\n", s); exit (0); }