How will you delete a node in DLL?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is include directive in c?

0 Answers  


Explain how can you avoid including a header more than once?

0 Answers  


Are there namespaces in c?

0 Answers  


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

0 Answers  


how can f be used for both float and double arguments in printf? Are not they different types?

0 Answers  






What does *p++ do? What does it point to?

0 Answers  


Is there a built-in function in C that can be used for sorting data?

0 Answers  


how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software

0 Answers  


main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }

10 Answers   TCS, Vector,


Can you think of a way when a program crashed before reaching main? If yes how?

2 Answers  


I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...

0 Answers  


write a program that print itself even if the source file is deleted?

2 Answers  


Categories