Definition : (int/float) SUM_ARRAY( *int / *float )

Defined in : #include <math.h>

Description: This macro will calculate the sum of an array of integers or
             an array of floats. Note that you cannot mix ints and floats.

Example    : SUM_ARRAY( ({ 1, 2, 3 }) )  ->  6
