#include #include main() { char h[40] = "hello "; char w[] = "world"; strcat(h, w); printf("%s\n", h); exit(0); }