main()
{
char Lname[20], Fname[20], full[20];
clrscr();
printf("Enter the Last Name : ");
scanf("%s", Lname);
printf("\n Enter the First Name : ");
scanf("%s", Fname);
strcat(Fname, " ");
strcat(Fname, Lname);
strcpy(full, Fname);
printf("\n Full Name Is %s ", full);
getch();
}