#include "Point.h" int main(void) { Point p; p.x = 12; p.y = 5; p.display(); p.move(2,-1); p.display(); return 0; }