const char *strconc(const char *first, const char *second) { char *output = (char *)malloc(CHAR_MAX); for (int i = 0; i < string_length(first); i++)