#include #include using namespace std; int main() { //The current way to define, declare, and initialize a variable. int price {10}; //Old fashioned (pre-2011) way to do the same thing. //int price = 10; //Old fashioned and even worse: //int price; Put unpredictable garbage into the newborn variable. //price = 10; Replace the garbage with the number 10. cout << "The variable contains " << price << ".\n"; return EXIT_SUCCESS; }