Questions
Search
Forum
Contact
Guest Book
Polls!
Got a Question?
q
Linked Lists r How do you reverse a singly linked list? How do you reverse a doubly linked list? Write a C program to do the same. Updated! Given only a pointer to a node to be deleted in a singly linked list, how do you delete it? Updated! How do you sort a linked list? Write a C program to sort a linked list. Updated! How to declare a structure of a linked list? Write a C program to implement a Generic Linked List. How do you reverse a linked list without using any C pointers? Updated! How would you detect a loop in a linked list? Write a C program to detect a loop in a linked list. How do you find the middle of a linked list? Write a C program to return the middle of a linked list If you are using C language to implement the heterogeneous linked list, what pointer type will you use? How to compare two linked lists? Write a C program to compare two linked lists. How to create a copy of a linked list? Write a C program to create a copy of a linked list. Write a C program to free the nodes of a linked list Updated! Can we do a Binary search on a linked list? Write a C program to return the nth node from the end of a linked list. New! How would you find out if one of the pointers in a linked list is corrupted or not? New!
r
r r r r r
r
r
r r
r r r r
r r r r
New! Write a C program to remove duplicates from a sorted linked list New! How to read a singly linked list backwards? New! How can I search for data in a linked list? New!
Write a C program to insert nodes into a linked list in a sorted fashion
q
Write your own .... r Write your own C program to implement the atoi() function Updated!
r
Implement the memmove() function. What is the difference between the memmove() and memcpy() function? Updated! Write C code to implement the strstr() (search for a substring) function. Write your own printf() function in C Implement the