pointers
c int main(void) { char *firstName = "Spencer"; char middleInitial = 'G'; char *lastName = "Tipping"; char fullName[100] = {'\0'}; printf("The length of the fullName is %i.\n", strlen(firstName) + strlen(&middleInitial) + strlen(lastName) + 2); strcat(fullName, firstName); strcat(fullName, " "); strncat(fullName, &middleInitial, 1); strcat(fullName, " "); strcat(fullName, lastName); printf("My full name is %s.\n", fullName); return 0; }