The answer you are looking for is A. 7.00. The cost of the item should be $6.00 as the tax should be $0.48. Making the total cost of the item $6.48.
Answer:

Step-by-step explanation:





Hello,
function minmax(int p1,int p2,int p3, int adr_big, int adr_small)
{ int mini=p1,maxi=p1;
if (p1>p2) {mini=p2;}
else {maxi=p2;};
if (p3>maxi) maxi=p3;
if (p3<mini) mini=p3;
*adr_big=maxi;
*adr_small=mini;
};
// main
int a=31,b=5,c=19,big,small;
minmax(a,b,c,&big,&small);
Answer:
1325/10000
Explain Step By Step Answer