1 Answers
Code:
#include <iostream>
using namespace std;
class abc
{
public:
void show();
};
void abc::show()
{
cout<<“Hello Everybody!!!”;
}
int main()
{
abc ob1;
ob1.show();
return 0;
}
Output:
Hello Everybody!!!
Process returned 0 (0x0) execution time : 0.027 s
Press any key to continue.