what is use of malloc and calloc?
No Answer is Posted For this Question
Be the First to Post Answer
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?
How to write c functions that modify head pointer of a linked list?
What are identifiers c?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Why is event driven programming or procedural programming, better within specific scenario?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
Explain what are header files and explain what are its uses in c programming?
How can I copy just a portion of a string?
What is echo in c programming?
Explain output of printf("Hello World"-'A'+'B'); ?
How to swap 3 numbers without using 4th variable?