// To compile and run this example, type: // g++ justposition.cc // ./a.out #include #include "position.h" using namespace std; int main() { Position p; p.x = 3; p.y = 4; p.symbol = 'c'; cout << p.x << endl << p.y << endl << p.symbol << endl; return 0; }