Pls help me to give the right ans, TIA!
Modify the existing Employee class such that when teh folowwing statements are given in the int mian() function:
#include
void main()
{
Employee e1, e2;
e1.getdata();
e2.getdata();
if(e1 < e2)
cout << "Hello";
else
cout << "Bye";
}