Answers for "fastest way to power the numbers in c++"

C++
1

how to write something in power of a number in c++

#include <iostream>
#include <cmath>
using namespace std;
int main(){
  cout<<pow(10,2);
  return 0;
}
Posted by: Guest on December-02-2020
0

c++ power of a number

double pow(double x, double y);
Posted by: Guest on September-01-2021

Code answers related to "fastest way to power the numbers in c++"

Browse Popular Code Answers by Language