Is it is possible to create an object of a class like below which does not have any parameterless constructor? Passing null pointer is not an option I think.
class MyClass
{
public:
MyClass(MyClass* myClass)
{
//do something
};
};