In this program we will
learn how to take exponential of a variable e.g 10^2.
The code is given below.
//Code starts
#include<iostream>
#include<conio.h>
using namespace std;
int expo(int b, int p)
{
int temp=1;
//taking a temporary...
John Johnson
“ First, solve the problem. Then, write the code. ”