okey...this program works properly,, all i need is to organize my results... let it display. the compound interest with the rate being __is: and so on.. please help. #include <stdio.h> #include <math.h> int main(void) { double amount; double principal=1000.0; double rate= .05; int year; int six_percent; printf("%4s%21s\n", "year", "Amount on deposit"); for(year=1 ;year<=10 ; year++) for(rate=.05; rate<=0.10; rate+=.01) { amount=principal * pow(1.0 +rate ,year); printf("%4d%21.2f\n"year,amount); } } the program needs to display the compound interest using 5%,6%,7%,8%,9%,10% as the rate. the questions specifies that i must use a for loop..