What is time null in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different types of pointers?
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
How would you write qsort?
Define function pointers?
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
Write a C program to print 1 2 3 ... 100 without using loops?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What is a void pointer? When is a void pointer used?
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 strcpy() and memcpy() function?
How is a null pointer different from a dangling pointer?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol