exp - Raising the exponential e to the xth power in C

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

int main(void)
{
      printf("Value of e to the first: %f.", exp(2.0));
}

Output:
Value of e to the first: 7.389056.