C++ ClassNov 3, 2023# initializer listclass Point { private: int x; int y; public: Point(int i = 0, int j = 0):x(i), y(j) {} };