#include #include #include int main(void) { void *buf = calloc(14, sizeof(int)); strcpy(buf, "Hello, world!"); printf("%s\n", buf); free(buf); }