Web Site Devloped By Abhishek Mishra
Tech. Help By Anand Mishra
Contact no. 9425355631

Powerd by Shree Guru Kripa Computer


Cpp_Function Program.


This is Program of Cpp_Function . So Enjoy.



#include
#include
class abc
{
public:
void show(void)
{
cout<<"\n\n\tSHOW FUNCTION OF ABC CLASS.";
}
};
class xyz:public abc
{
public:
void show1(void)
{
cout<<"\n\n\tDISPALY FUNCTION OF XYZ CLASS.";
}
};


void main(void)
{
clrscr();
xyz o;
o.show();
o.show1();
getch();
}