write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?
Answer Posted / 47904062
use arrays, pointers etc
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
write a proram to reverse the string using switch case?
What's the total generic pointer type?
Where register variables are stored in c?
What is typedef example?
What are the differences between Structures and Arrays?
What is difference between array and structure in c?
How do you convert strings to numbers in C?
Is c is a low level language?
How can you allocate arrays or structures bigger than 64K?
What is switch in c?
What is the value of c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
How can my program discover the complete pathname to the executable from which it was invoked?
What is the best way to comment out a section of code that contains comments?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none