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
#include int main(){ char name[] = "derp" "herp"; printf("\"%s\"\n", name);//"derpherp" return 0; }