Skip to main content

floatpower

warning

This function starts with a lowercase letter.

Description

Raises the given value to the power of the exponent.

NameDescription
Float:valueThe value to raise to a power, as a floating-point number.
Float:exponentThe exponent is also a floating-point number. It may be zero or negative.

Returns

The result of 'value' to the power of 'exponent'.

Examples

printf("2 to the power of 8 is %.1f", floatpower(2.0, 8.0));
// Result: 256.0
  • floatsqroot: Calculate the square root of a floating point value.
  • floatlog: Get the logarithm of the float value.