#include <stdio.h>
#include <string.h>
char first[100]; /* First name of person we are working with */
char last[100]; /* His last name */
/* First and last name of the person (computed) */
char full[200];
int main()
{
clrscr();
printf("Enter First Name : ");
fgets(first, sizeof(first), stdin);
printf("Enter Last Name : ");
fgets(last, sizeof(last), stdin);
strcpy(full, first);
strcat(full, " ");
strcat(full, last);
printf("The Name is %s", full);
getch();
return (0);
}