SomeClass* psc = new SomeClass();
SomeClass *psc = new SomeClass;
Given that the class SomeClass has a user-declared default constructor, what is the difference between the two statements above?

thanks in advance