Program to find the exponential power of an integer using a recursive function in Data Structures (C plus plus)
In this tutorial, we will learn about the Program to find the exponential power of an integer using the recursive function in Data Structures (C++).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
#include<iostream> using namespace std; main() { long pow(int, int), value, k; cout<<"Please enter any integer value: "<<endl; cin>>value; cout<<"Please enter value for exponent: "; cin>>k; cout<<pow(value,k); } long pow(int a, int b) { if(b==1) return a; else return a*pow(a, b-1); } |
Output: