Example library functions
pow()
#include <math.h>
double pow(double base, double exp);
The pow() function returns base raised to exp power. Error occurs if base or exp <=0 or if exp is not an integer.
printf()
#include <stdio.h>
int printf(const char* format,[arg list])
Prints arguments that make up argument list under control of format string