/* CGS 3460 Computer Programming Using C Homework 6 Problem 1 Author: Cem Boyaci For questions send email to: cboyaci@cise.ufl.edu */ #include #include #include // Appends first n character of str2 to the end of str1 char* concat_n(char* str1, char* str2, int n){ // obtain string lengths int len_str1 = strlen(str1); int len_str2 = strlen(str2); // if n is larger than str2's length if(n