1.9 — Introduction to literals and operators
Consider the following two statements: std::cout << “Hello world!”; int x{ 5 }; What are “Hello world!” and 5? They are literals. A (also known as a ) is a fixed value that has been inserted directly into the source code. Literals and variables both have a value (and a …