write a program that calculates and displays the price before commission and after commission of 6%: The program prompt the user to enter
i. Quantity of products purchased
ii. Unit price.
1
Expert's answer
2016-03-09T08:36:42-0500
#include <stdio.h>
int main() { int nunberOfProducts; float price;
printf("Number of units: "); scanf("%d", &nunberOfProducts);
Comments
Leave a comment