pow function

Syntax

  • float pow(base, exponent)

Parameters

  1. basefloat
  2. exponentfloat

Returns

Returns base raised to the power exponent.

Description

The pow function calculates the result of raising base to the power exponent.

Related