Question: Please provide complete definition of class AB. thera are 3 attributes. attributes aa is constant...watever u found out juz give it to me.
int main()
{
cout<<AB::getBB();
AB*a1=new AB(7.7, 8.8);
a1->setCC(9.9);
const AB a2;
cout<<a2.getCC();
delete a1;
cout<<AB::getBB();
}
Last edited on
??? What are you asking for?
I need the class part coding for the above int main....