Bot program to count the products bought in the supermarket, with total sum.
void superMarket() { int a,b,c,d,e,f,g; int totalSum; printf("Please enter the amount of Toilet Paper bought: "); scanf("%d",&a); printf("Please enter the amount of Hand Sanitizer bought: "); scanf("%d",&b); printf("Please enter the amount of Tissues bought: "); scanf("%d",&c); printf("Please enter the amount of Soap bought: "); scanf("%d",&d); printf("Please enter the amount of Bottled Water bought: "); scanf("%d",&e); printf("Please enter the amount of Canned Food bought: "); scanf("%d",&f); printf("Please enter the amount of Masks bought: "); scanf("%d",&g); totalSum = (a*3)+(b*5)+(c*4)+(d*1)+(e*2)+(f