*/ #include #include int main() { char string[10], string2[15], string3[25]; int(age); printf("Please enter your first name.\n"); fgets(string, 10, stdin); printf("Please enter your last name. \n"); fgets(string2, 15, stdin); printf("How old are you? \n"); scanf("%d", &age); strcat(string3, string); strcat(string3, " "); strcat(string3, string2); printf( "Your name is %s. \n", string3); printf( "You are %d years old.", age); getchar(); return 0; }