#include main() /*main function*/ { int days=45; /*character declarations, the declaration*/ float principal=3500.00; float interestRate=0.155; float dailyInterest; printf("\n"); /*body of program*/ dailyInterest=interestRate/365; dailyInterest=principal*dailyInterest*days; principal*=dailyInterest;/*principal + principal = daily interest*/ printf("\n"); printf("The balance you owe is %.2f", principal); return; }