Now consider the following code segment, assuming the Point class definition from above, and answer the questions below.

1 int main( )

2 {

3 Point.xlocation = 3;

4 Point.ylocation = 10;

5 Point p1;

6 p1 = Point(5,6);

7 Point p2( );

8 return 0;

9 }

Rewrite the statement in line 9 to declare a default instance of the Point class: