C++ Language/Expressions

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Much of a C++ program consists of a sequence of "expressions". An expression is some kind of "operator", along with the "operands" that it processes as its input. When the program is running, the computer "evaluates" the expression (often producing a "value" as the result of that evaluation).

  1. Precedence
  2. Chain of Assignment