#include #include using namespace std; //The variable is born at the point where you define it. //The variable stays alive as long as the computer is executing //instructions within the {curly braces} within which the variable //was defined. int main() { int price {10}; //Define, declare, and initialize a variable. cout << "The variable contains "; cout << price; //Outputs the content of the variable (the number 10). cout << ".\n"; //Output the same sentence using only one statement. cout << "The variable contains " << price << ".\n"; return EXIT_SUCCESS; //The variable dies at this point. }