Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 731 Bytes

c-unary-operators.md

File metadata and controls

27 lines (21 loc) · 731 Bytes
description title ms.date helpviewer_keywords ms.assetid
Learn more about: C Unary Operators
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