Вывод программы и объясните, почему a и b показывают разные значения - PullRequest
0 голосов
/ 10 октября 2018
#include<iostream>

using namespace std;

class Stu
{
    int a,b;

public:
    void show()
    {
        int a,b;
        a=10;
        b=15;
        cout<<"Object address is "<<this<<endl;
        cout<<"A :"<<this->a<<endl;
        cout<<"B: "<<this->b<<endl;
    }
};

int main()
{
    Stu s;
    s.show();
    return 0;
}
...