Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 584 Bytes

File metadata and controls

31 lines (20 loc) · 584 Bytes
title ms.date helpviewer_keywords ms.assetid
C Unary Operators
11/04/2016
operators [C], unary
unary operators
743e00b1-f874-4c0d-b211-8c24d4af9739

C Unary Operators

Unary operators appear before their operand and associate from right to left.

Syntax

unary-expression: postfix-expression

++ unary-expression

-- unary-expression

unary-operator cast-expression

sizeof unary-expression

sizeof ( type-name )

unary-operator: one of & * + - ~ !

See also

C Operators