Top "Pow" questions

pow is a function that exists in various programming languages that usually takes two numbers as input and returns the first number to the power of the second number.

Why is printf not using scientific notation?

I understand that this is a common problem. However I can't find a solid straight answer. 16 ^ 54 = 1.0531229167e+65 (this is the …

c printf pow
Does pow() work for int data type in C?

I was simply writing a program to calculate the power of an integer. But the output was not as expected. …

c pow exponentiation
finding cube root in C++?

Strange things happen when i try to find the cube root of a number. The following code returns me undefined. …

c++ math.h pow
BigInteger.pow(BigInteger)?

I'm playing with numbers in Java, and want to see how big a number I can make. It is my …

java math biginteger pow
Why Does Math.pow(x,y) Count as a Double?

I'm writing a Java program to calculate how much food it will take to get a monster to a certain …

java int double pow
pow() from math.h library - How to Apply using functions

So I'm writing a bit of code that needs to raise a function's return value to a certain power. I …

c++ pow math.h
How to: pow(real, real) in x86

I'm looking for the implementation of pow(real, real) in x86 Assembly. Also I'd like to understand how the algorithm …

x86 assembly pow
calculate mod using pow function python

So, If i would like to calculate the value of 6^8 mod 5 using the pow function, what should I put in …

python pow
Find Cube root of a number Using System.Math.Pow() method in C#

While writing a program I came across finding the cube root of a number in one of my functions. when …

c# pow
How to do a fractional power on BigDecimal in Java?

In my little project, I need to do something like Math.pow(7777.66, 5555.44) only with VERY big numbers. I came across …

java formula bigdecimal pow