//Header file: #include
//Declaration: float exp2f(float arg);
double exp2(double arg);
long double exp2l(long double arg);
#include
#include
int main(void)
{
printf("Value of e to the first: %f.", exp2(1.0));
}
/*
Value of e to the first: 2.000000.*/