- implement a function with default arguments.
- overload a function which can compute the absolute value for an array, the array can be int, float and double
'''C++ vabs(int * p, int n); //should n be int or size_t, what's the difference, please create an arrary with more than 2^31 elements vabs(float * p, int n); vabs(float * p, int n); '''