/* This program demonstrates * 1. The sizeof operator * 2. Unsigned integers * 3. shortcut operators * 4. Increment and decrement #include #include using namespace std; int main() { /* The sizeof operator gives us the size (in bytes) of a dtat type or a variable */ int num1; cout<<"The size of num1: "<< sizeof(num1)<<" bytes"<>val2; val1 = val1 + (12 * 0.37 - val2 / 19); cout<<"Long form operation: "<< val1 <