state gov UP Police Programmer Grade 2 Mock Test Series Programming and Data Structure Programming in C
main() फ़ंक्शन में कौन सा/से वेरिएबल पहुंच योग्य है/हैं?
class sample:
{
private:
int x;
protected:
int y;
public:
int z;
}
1
y
2
z
3
x
4
y और z
main() फ़ंक्शन में कौन सा/से वेरिएबल पहुंच योग्य है/हैं?
class sample:
{
private:
int x;
protected:
int y;
public:
int z;
}