V
Vinodh Kumar
class A
{
int myIntVal;
};
int main()
{
A a;
return 0;
}
The value of *myIntVal* in *a* object is indetereminate.
The default constructor synthesized by the compiler, does not invoke the
constructor for the *int*.
Why?
{
int myIntVal;
};
int main()
{
A a;
return 0;
}
The value of *myIntVal* in *a* object is indetereminate.
The default constructor synthesized by the compiler, does not invoke the
constructor for the *int*.
Why?