Help on Study Guide

Don't need help anymore.
Last edited on
Why don't you try it yourself? That'd help you much more especially regarding the next exercises. Download an IDE (like Code::Blocks), create a new (console) project, and then:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class PERSON
{
public:
  void M1()
  {
    M2().Jim;
    M2();
    .M2();
    Jim.M2();
  }
  void M2()
  {
  }
};

int main()
{
  PERSON Jim;
  Jim.M1();
  return 0;
}
see what the compiler says

you can use that for the other questions as well.
Topic archived. No new replies allowed.