#include int main() { char *str1 = "Hello "; char str2[] = "World!"; printf( "This is a string: >>%s%s<<\n", str1, str2 ); return 0; }