Thread
:
question on CONSTRUCTOR
View Single Post
ravindrareddy3
Newbie Member
17Mar2010,19:03
what will happen if we define a constructor in protected scope in a class?
for eg
class some
{
int x;
protected:
some()
{
x=90;
}
};