Q1:
Write a C++ function that computes the value of e~x by the formula,
e~x = 1 + x/1! + x~2/2! + x~3/3!+...........
the accuracy of result should be at least 10 decimal places. The function should be called from 'main' for different values of x and result should be displayed on screen.