Notes 1 =========================================================== Professor I am not certain what errors I am making with writing the program. /* Arup Guha My Second C Program 8/25/05 Computes the number of feet in a mile. */ #include #include int main(void) { // Declare variables. int ounces_in_cup, ounces_in_pint; int ounces_in_gallon; // Initialize known values. ounces_in_gallon = 64; ounces_in_pint = 16; // Calculate the number of ounces in a gallon. ounces_in_gallon = ounces_in_cup*ounces_in_pint; // Output the result. printf("Oun in Gal=%d\n\n\noun in Gal=%d.\n", ounces_in_gallon, ounces_in_pint); printf("Goodbye!");system("pause"); return 0; }