what is the error in my code. HELP REQUIRED HERE.
//THIS IS THE CODE BELOW NEED TO KNOW WHAT IS WRONG... // BRINGS AN ERROR SHOWING "INVALID USE OF MEMBER(did you forget thr '&'? " #include<iostream> #include<cstring> #include<string> using namespace std; class EMPLOYEE { public: int Employee_Number; char Employee_Name[25]; int BasicSalary; float IT, NetSalary; public: void get(); void diplay(); void allowance(); void GrossSalary(); }person; void EMPLOYEE::get() { cout<< "Enter the Employee Number: "<< endl; cin >> Employee_Number; cout<< "Enter employee name: "<< endl; cin>> Employee_Name; cout<< "Enter the salary: "<< endl; cin>> BasicSalary; } void EMPLOYEE::allowance() { int allowance; allowance = BasicSalary * 0.12; cout<< "The allowance is : "<< allowance << endl; } void EMPLOYEE::GrossSalary() { float GrossSalary; GrossSalary = BasicSalary - allowance; cout<< "The gross salary is: "<< GrossSalary << endl; } int main() { person.get(); person.allowance(); person.GrossSalary(); }