what is link list?
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
list are the set of items which are brought from various
parts and binded together in which each data may or may not
be having relation..... linked list is basically set of
data 's which has link (locative address) to refer the next
data of that list...
thank u
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravi joshi
Linked list is a data structure where data is logically
viewed as contiguous and helps user in systematically
storing and retrieving the data.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / srinivasu
linked list is distributed memory locations.In this linked
list we have to insert the elements and delete the elements
that means insertion and deletion is possible.And in this
linked list all elements are stored in heap.
| Is This Answer Correct ? | 1 Yes | 0 No |
List out few of the applications that make use of Multilinked Structures?
When was c language developed?
What is a wrapper function in c?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
Write the control statements in C language
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
25 Answers Datamatics, Solartis, TCS, ThinkBox, Trine,
How can I do graphics in c?
What is actual argument?
Write a programe print the sum of series 0,1,2,.....10
The variables are int sum=10,SuM=20; these are same or different?
Explain what is the benefit of using enum to declare a constant?
What is build process in c?