Do pointers store the address of value or the actual value of a variable?
No Answer is Posted For this Question
Be the First to Post Answer
What is scope rule in c?
What does the && operator do in a program code?
What is the relationship between pointers and data structure?
write an algorithm to display a square matrix.
What is sizeof array in c?
What is #define used for 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?
what is the difference between malloc() and calloc() function?
What's a "sequence point"?
write a program to swap two variables a=5 , b= 10 without using third variable
can we have joblib in a proc ?
how can we Declare a variable in c without defining it.