what is the difference between arrays and linked list
Answer Posted / manikandan.s
Array is a collection of similar data-items and stored in sequence order with fixed size of memory.
But lined list contains collection of node. Each node link between other node and pointer is used to identify the position. Node consists of element and address of next element.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
while initialization of array why we use a[][2] why not a[2][]...?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
using for loop sum 2 number of any 4 digit number in c language
Tell me when would you use a pointer to a function?
what is stack , heap ,code segment,and data segment
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Write a Program to accept different goods with the number, price and date of purchase and display them
What are the keywords in c?
will u please send me the placement papers to my mail???????????????????
Can we access array using pointer in c language?
What is #include stdio h?
Can a variable be both const and volatile?
What is ambagious result in C? explain with an example.
What does the c in ctime mean?