What is getch() function?
No Answer is Posted For this Question
Be the First to Post Answer
What are the similarities between c and c++?
Why c is procedure oriented?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
Why void main is used in c?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
When should you use a type cast?
How can I access memory located at a certain address?
Where in memory are my variables stored?
How many identifiers are there in c?
What are preprocessor directives in c?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]