// Baking Ratios // baking_ratios.c // // This program was written by (z5555555) // on // // This program will scan in a double representing the final weight of a cooking // batter in grams. Using the provided ratios, the program should calculate the // required weight of each ingredient to make up the given batter amount and // print it to the terminal to two decimal places. #include #define FLOUR_RATIO 0.08 #define SUGAR_RATIO 0.35 #define EGG_RATIO 0.2 #define CHOCOLATE_RATIO 0.12 #define BUTTER_RATIO 0.25 int main(void) { // Declare a variable for the weight in grams // Print prompt // Scan in the weight from the terminal // Calculate the ingredient weights using the provided ratios and print these values return 0; }