Write a C++ program where a function which is not the part of the class can access the private data member
#include #include class abc { private: int n; public: abc() { n=0; } void getdata() { cout<<"\n"<<"Enter the value of N: "; cin>>n; } void show() { cout<<"\n"<<"Total Sum is: "<