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?
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
Explain what are global variables and explain how do you declare them?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
Describe dynamic data structure in c programming language?
What are preprocessor directives in c?
What is meant by int fun const(int a, int b) { .... ... }
What is the use of #include in c?
difference of two no's with out using - operator
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
how to write hello word without using semicolon at the end?
how can f be used for both float and double arguments in printf? Are not they different types?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?