#include using namespace std; union punkt{ short asukoht; char koordinaat[2]; }; int main(){ punkt p; p.koordinaat[0]=3; p.koordinaat[1]=5; cout << (int)p.koordinaat[0] << " " << (int)p.koordinaat[1] << " " << p.asukoht << endl; cout << (p.asukoht & 255) << " " << ((p.asukoht >> 8) & 255) << endl; return 0; }