// // Program name: five // Author: Maury Eggen // // Input: none // Output: internal representation for "int" with value -5 // written to standard output // // C++ programs begin with the following three lines #include main() { // ---- start of important part of program int x; x = -5; cout << hex << x << endl; // ---- end important part of program // C++ programs end with the following two lines return 0; }