Computer Science, asked by ramanareddyalavalapa, 3 months ago

develop c+ application to compute the exponentation​

Answers

Answered by IISLEEPINGBEAUTYII
1

Answer:

C++ Program to calculate power of a number using pow function

  1. using namespace std;
  2. int main() { int base, exp ;
  3. cout << "Enter base and exponent\n" ; cin >> base >> exp ;
  4. cout << base << "^" << exp << " = " << pow (base, exp ); return 0; }
Similar questions