Universal Remote User Manual

214 Creating and Running Algorithms Chapter 6
Octal Constant:
First character is 0. Remaining characters are 0-7. If ".", "e" or "E" is
found, the number is assumed to be a Decimal Constant as above.
Primary-expression:
constant
(expression)
scalar-identifier
scalar-identifier.bitnumber
array-identifier[expression]
abs(expression)
max(expression,expression)
min(expression,expression)
Bit-number:
Bn where n=0-9
Bnn where nn=10-15
Unary-expression:
primary-expression
unary-operator unary-expression
Unary-operator:
+
-
!
Multiplicative-expression:
unary-expression
multiplicative-expression multiplicative-operator unary-expression
Multiplicative-operator:
*
/
Additive-expression:
multiplicative-expression
additive-expression additive-operator multiplicative-expression
Additive-operator:
+
-