Question: Code in C Write a function named pay amount that determines the smallest number of $20, $10.$5 and $1 bills necessary to pay the amount

Code in C
Write a function named pay amount that determines the smallest number of $20, $10.$5 and $1 bills necessary to pay the amount represented by the dollars parameter. The twenties parameter points to a variable in which the function will store the number of $20 bills required. The tens, fives, and ones parameters are similar. void pay amount(int dollars, int twenties, int tens, int fives, int 'ones) //add your code 7 Edit View Insert Format Tools Table 12pt Paragraph U A B T PV AV Env v Dz void pay amount(int dollars, int 'twenties, int tens, int 'fives, int *ones)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
