fma(a, b, c); |
Function fma() of cmath library accepts three parameters: a, b – for multiplying this values , c – to add value.
Returns the value of a * b + c.
Execution result ( 2 * 2 + 3):
fma(a, b, c); |
Function fma() of cmath library accepts three parameters: a, b – for multiplying this values , c – to add value.
Returns the value of a * b + c.
Execution result ( 2 * 2 + 3):