Linked list is a Linear or non linear explain if linear how
it working as a non linear data structures
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
What is the difference between call by value and call by reference in c?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
Is fortran still used today?
What is difference between structure and union?
what about "char *(*(*a[])())();"
Can main () be called recursively?
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?
Explain output of printf("Hello World"-'A'+'B'); ?
Explain the use of fflush() function?
how many argument we can pas in in a function
What is the c value paradox and how is it explained?