#include using namespace std; int main(int argc, char **argv) { int i; short x = -1; // signed byte variable in C++ // We now ask the C++ compiler to INTERPRET x (show us the value) cout << "signed number x: " << x << endl; // Prints -1 cout << "Bit pattern stored in x = "; for (i = 15; i >= 0; i-- ) cout << !((x & (1<