User manual

194
mikoC PRO for dsPIC
MikroElektronika
Equal Sign
Equal sign (=) separates variable declarations from initialization lists:
int test[5] = { 1, 2, 3, 4, 5 };
int x = 5;
Equal sign is also used as an assignment operator in expressions:
int a, b, c;
a = b + c;
For more information, see Assignment Operators.
Pound Sign (Preprocessor Directive)
Pound sign (#) indicates a preprocessor directive when it occurs as the rst nonwhitespace character on a line. It
signies a compiler action, not necessarily associated with a code generation. See the Preprocessor Directives for
more information.
# and ## are also used as operators to perform token replacement and merging during the preprocessor scanning
phase. See the Preprocessor Operators.