how many key words availabel in c
a) 28
b) 31
c) 32
No Answer is Posted For this Question
Be the First to Post Answer
What is pass by reference in c?
What is the use of printf() and scanf() functions?
Difference between MAC vs. IP Addressing
What is the difference between ++a and a++?
How to declare a variable?
write a program to find out prime number using sieve case?
How can I generate floating-point random numbers?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Is an array parameter is always "by reference" ?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Why is malloc used?
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?