#include void main( ) { char name[20],subject[20]; float Basic,HRA,DA,Salary; float calculate( ) { return(Basic+DA+HRA); } public: void Readdata( ) { cout<<"Enter the name of Teacher:"; gets(name); cout<<"Enter the subject:"; gets(subject); cout<<"Enter Basic:"; cin>>Basic; cout<<"Enter HRA:"; cin>>HRA; cout<<"Enter DA:"; cin>>DA; salary=calculate( ); } void Displaydata( ) { cout<<"Details of Teacher:"<