pgm to find any error in linklist(in single linklist check
whether any node points any of previous nodes instead of
next node)
No Answer is Posted For this Question
Be the First to Post Answer
Why c language is called c?
Explain demand paging.
what is the differance between pass by reference and pass by value.
who is the father of c
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
What is #ifdef ? What is its application?
What are header files why are they important?
What is function pointer and where we will use it
number of times a digit is present in a number
What is c value paradox explain?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
What is the difference between GETS();AND SCANF();