All Code should be written in C:
1. A perfect number is defined as a number whose proper divisors
(factors not including the number itself) add up to the same
number. For example, 28 is a perfect number because its perfect
divisors are 1, 2, 4, 7, 14, which add up to 28. Write a C function
called is_perfect that takes a since integer as input, and returns
1 if the number is perfect, or 0 otherwise.
2. Using the...