Hi,

Will the compiler provide a default constructor in the following code:

Code:
class C
{
private:
 int n;
 char *p;
};

void f()
{
 C obj; 
}
Many thanks