M E N U
Content
Introduction
Release Notes
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Referance Manual
Conventions
Templates
Constants
Identifiers
Operators
Expression [( )]
Unary Not [!]
Unary Plus [+]
Unary Minus [-]
Stringizing [#]
Charizing [#@]
1's Complement [~]
Multiplication [*]
Division [/]
Modulus [%]
Addition [+]
Subtraction [-]
Concatenation [##]
Bit Left Shift [<<]
Bit Right Shift [>>]
Bit And [&]
Bit Or [|]
Bit Xor [^]
Less Than [<]
Greater Than [>]
Less Than
Or Equal To [<=]
Greater Than
Or Equal To [>=]
Equal To [==]
Not Equal To [!=]
Logical And [&&]
Logical Or [||]
Logical Xor [^^]
Sequence [,]
Directives
iPP
Legal
Feedback
|
Parentheses are used for two purposes. They are to enclose parameters for
a procedure and for grouping, ordering and clarifying operations in an
expression.
Syntax
identifier( { expression { , expression }... } )
or
expression operator [ ( expression ) | expression ]
Example
#define FALSE (-1)
|