How do I add two strings?
I tried name = \"derp\" + \"herp\";, but I got an error:
name = \"derp\" + \"herp\";
Expression must have integral or enum type
You should use strcat, or better, strncat. Google it (the keyword is "concatenating").
strcat
strncat