Computer Science, asked by Gautamkr6589, 1 year ago

Write a program bill of the shop list in c language

Answers

Answered by PiyushSinghRajput1
1
Suppose you have to develop a program for managing the sales of your grocery store. The following functions have been requested by your Head (The shopkeeper):
1: The program should allow the user to select and buy different items present in that shop.
2: The user should be able to see the items that he has bought and print his total bill on the screen
3: The program should not end until the user specifies it to end. (The user should press 'q' to quit the program)

Code: [View]

#include <stdio.h> #include <stdlib.h> #include <conio.h>

Similar questions