#include <iostream>
using namespace std;
class Show{
public:
void show()
{
cout<<"hello world!"<<endl;
}
};
int main()
{
Show *objP = NULL;
objP->show();
return 1;
}
#include <iostream>
using namespace std;
class Show{
public:
void show()
{
cout<<"hello world!"<<endl;
}
};
int main()
{
Show *objP = NULL;
objP->show();
return 1;
}