Printing Array of Pointersausairman, Kainunno said "Parties is an array of pointers, containing names." Which means that he ...
LoopsHere's a good place to start: [code] for (int i=0; i<5; i++) { cout << i << endl; } [/code] T...
Printing Array of Pointers[code] for (int j = 0; j < PlaneAlfa.NumPartiesOnPlane; j++) { cout << (*PlaneAlfa.Parties[j])....
bitwise mov[code] int byte = 0xAB; vector <bool> bits; //reads all bits for (int i=0; i<8; i++) bits.push_back...
bitwise movOk, so say you have: [code] int byte = 0xABCD; [/code] Tell me what you want to do with it, and I'...
This user does not accept Private Messages