Absolute Value

Learn to write multiple functions for finding absolute values.

Challenge

Write a program that implements multiple versions of theabso( ) function to find the absolute value of int, float, long int, double, and long double.

For this problem, you will have to write five functions:

1. int abso ( int )

This function takes an ...