What are header files? What are their uses?
No Answer is Posted For this Question
Be the First to Post Answer
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
what is the difference between definition and declaration? give me some examples.
How many parameters should a function have?
how we do lcm of two no using c simple if while or for statement
what is the defrenece between structure and union
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
Can we change the value of constant variable in c?
How can a string be converted to a number?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
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 is the difference between unix os and linux os
void main() { int i=5; printf("%d",i++ + ++i); }