C Operators

% Remainder after division (modulo division) The result of a modulo division is the remainder of an integer division of the given numbers. Examples

Read More

Line Continuation Character

\ //Put a ‘\’ at the end of a line to signify to compiler next line shoud be part of this line //This is useful for defines etc, e.g.:- #define USBInitialize(x) \ { \ USBHostInit(x); \ }

Read More