Exponent

^ is the character for Exponent (EXP on a calculator)

In C you use pow()

	pow(base, exponent)

(more…)

rint() Round to nearest integer

The rint() function rounds a double to the nearest integer.  It’s output is still a double;

For instance if double d = 5.83
(more…)