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
What is abstract data structure in c?
What is typedef?
What is void pointers in c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is the process of writing the null pointer?
What is class and object in c?
What are the 4 types of functions?
Explain the use of function toupper() with and example code?
What is the difference between union and anonymous union?
How can I swap two values without using a temporary?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Does c have function or method?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
Is Exception handling possible in c language?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.