Doubt about member functions calls

Hi,

This might seem trivial, but i got a doubt.
I have class like



1
2
3
4
5
6
7
8
class SomeName
{
  public:
   dosomething();
  private:
     bool oneTwoDarray[10][10];
     doSomethingElse():
}


Now, if I call
doSomethingElse()
from
doSomething()
and modify values of
oneTwoDarray
, will these modified values be available in
doSomeThing()
, after execution of
doSomethingElse()
Yes.
Topic archived. No new replies allowed.