HI...frdz..
I need to call a non- constant method(which returns some value) from a constant method.. but when i compile it, it is showing an error.." method (non-static) - function call (const method) does not match"..
eg..
int temp_var=0;
void MyClass::test()const
{
temp_var= add(10,20);
}
int MyClass::add(int a, int b)
{ return a+b;}



