O
onkar
class Base{
// some stuff
};
int main(void){
Base a;
a=Base(10);
return 0;
}
what are the constructors called ?? Is copy assignment operator also
called in this situation ?? If yes how is it defined ??
// some stuff
};
int main(void){
Base a;
a=Base(10);
return 0;
}
what are the constructors called ?? Is copy assignment operator also
called in this situation ?? If yes how is it defined ??