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 do you mean by c what are the main characteristics of c language?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
write a c program to find largest of three numbers using simple if only for one time.
Is c# a good language?
In a switch statement, explain what will happen if a break statement is omitted?
Explain what a Binary Search Tree is.
Do you know what are bitwise shift operators in c programming?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Find the highest of three numbers and print them using ascending orders?
What is difference between main and void main?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?