using c++ code simply use the cmath header. which has all of the needed math functions.
#include
#include
int main()
{
// prints - 16,777,216
std::cout << pow(2,24);
}
using c++ code simply use the cmath header. which has all of the needed math functions.
#include
#include
int main()
{
// prints - 16,777,216
std::cout << pow(2,24);
}
This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.