A program that read any number x & display e to the power x in Cpp.

#include<stdio.h>
#include<conio.h>
#include<iostream.h>
#include<math.h>

void main()
{
    float n,e;
    clrscr();
    cout<<"Enter any number = ";
    cin>>n;
   
    e=exp(n);
    cout<<"\ne to the power "<<n<<" = "<<e;

    getch();
}


///////////////////////////////////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........