Comp 252 -- Assignment #2 -- Due Tuesday, September 11, 1990 Write a C program to compute mortgate payments (principal and interest). Your program should prompt for the amount borrowed, the yearly interest, and the term (in years). It should then print the monthly payment. Be sure your monthly payment is not printed with fractional cents. The formula for computing the monthly payment is: P*(I/12) -------------------------- 1 - 1 / (1 + I/12)**(12*T) Where P is the principal, I is the interest, and T is the term. "**" represents the exponentiation operator. Use the C math library routine "pow" to computer exponential. In C pow(B,E) returns B raised to the E power, i.e., B**E. pow returns a double and accepts doubles as it arguments. You will need to include stdio.h and math.h in your program in order to use printf and pow.