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
Explain how can you tell whether a program was compiled using c versus c++?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is a node in c?
What is volatile, register definition in C
In a switch statement, explain what will happen if a break statement is omitted?
What is || operator and how does it function in a program?
What extern c means?
Is null always defined as 0(zero)?
How do I use strcmp?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What is the use of bit field?
Explain how are 16- and 32-bit numbers stored?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.