| 19 | } |
| 20 | |
| 21 | int main(){ |
| 22 | int a,b; |
| 23 | |
| 24 | cout<<"Enter the number and its power: "; |
| 25 | cin>>a>>b; |
| 26 | |
| 27 | int finalAns = binExpRec(a,b); |
| 28 | cout<< a << " to the power " << b << " = " << finalAns; |
| 29 | |
| 30 | return 0; |
| 31 | } |
nothing calls this directly
no test coverage detected