| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/adarshbalu/cpp-programs/master/friendfunction.cpp | [Back] [Original] |
#include
#include
class abc
{
int a;
public: abc()
{
a=0;
}
void getdata(int x)
{
a=x;
}
friend void printvalue(abc);
};
void printvalue(abc z)
{
cout
| Web Proxy Viewer | New URL | Original Page |