#include <stdio.h>
#include <string.h>
int main() {
/*
strcat(char * destination, const char *source)
attaches source to destination
*/
char buffer[100] = "Hello ";
strcat(buffer, "World!");
printf("Buffer: %s
", buffer);
return 0;
}