What's the difference between a linked list and an array?
Answers were Sorted based on User's Feedback
Answer / amneh tanbouz
Link list data is not stored in a contiguous memory, while
an array is a contiguous block of memory that is set aside
to store items of a single data type. also Linked list use
only the amount of memory required to store the data. An
array grabs a block of memory but may not use all of it for
actual storage data.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / bsn.teja
answers 1,2,3,4,5,11,13 gives the entire difference between
array and linked list.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / n.muthukumar
A linked list consists of data nodes, each pointing to the
next in the list. An array consists of contiguous chunks
memory of predetermined size.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / ashish chauhan
A linked list consists of data nodes, each pointing to the
next in the list. An array consists of contiguous chunks
memory of predetermined size
| Is This Answer Correct ? | 4 Yes | 4 No |
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
Why clrscr is used after variable declaration?
How would you obtain the current time and difference between two times?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
Is swift based on c?
What is the meaning of 2d in c?
Can one function call another?
i have a written test in tomorrow
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
Is c easier than java?
Mention four important string handling functions in c languages .