#include <iostream>
using namespace std;
class x
{
Private:
static const int a = 76;
public:
static in getA()
{
return a;
}
};
int main()
{
cout <<x::getA()<<endl;
return 0;
}
Answers
Answered by
2
_______________________________
There is a error in 8th statement it should be int not in
After correction
OUTPUT:-
76
_______________________________
Similar questions