Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 954 Bytes

operands-and-expressions.md

File metadata and controls

22 lines (15 loc) · 954 Bytes
description title ms.date helpviewer_keywords ms.assetid
Learn more about: Operands and Expressions
Operands and Expressions
11/04/2016
expressions [C++], syntax
operands, definition
operands
8453b095-a017-4c70-9a64-e3b2bd1e35e5

Operands and Expressions

An "operand" is an entity on which an operator acts. An "expression" is a sequence of operators and operands that performs any combination of these actions:

  • Computes a value

  • Designates an object or function

  • Generates side effects

Operands in C include constants, identifiers, strings, function calls, subscript expressions, member-selection expressions, and complex expressions formed by combining operands with operators or by enclosing operands in parentheses. The syntax for these operands is given in Primary Expressions.

See also

Expressions and Assignments