im confused, in my coding C++ please help me..
#include <conio.h>
#include <string.h>
#include <iostream.h>
main()
{
char h1[80];
char h2[80];
char move[80];
clrscr();
cout<<"Character 1 = ";
gets(h1);
cout<<"Character 2 = ";
gets(h2);
strcpy(move, h1);
cout<<"Result = "<<move;
getch();
}
I want output/result program like
Move = h1+h2;