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


Please Help Members By Posting Answers For Below Questions

What is an lvalue in c?

697


What are the different categories of functions in c?

648


What is #define used for in c?

615


can anyone suggest some site name..where i can get some good data structure puzzles???

1643


Explain data types & how many data types supported by c?

586






find the sum of two matrices and WAP for it.

634


What is difference between function overloading and operator overloading?

661


why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???

1520


Discuss the function of conditional operator, size of operator and comma operator with examples.

681


What are high level languages like C and FORTRAN also known as?

686


Which is the memory area not included in C program? give the reason

1509


Do you know the use of 'auto' keyword?

662


Write a c program to build a heap method using Pointer to function and pointer to structure ?

4179


What is the use of linkage in c language?

617


Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers

1425