What's the difference between a linked list and an array?
Answer Posted / 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 |
Post New Answer View All Answers
Write a program to check palindrome number in c programming?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Is the exit() function same as the return statement? Explain.
Why is c so popular?
What is the role of this pointer?
Differentiate between full, complete & perfect binary trees.
Differentiate between new and malloc(), delete and free() ?
What is a double c?
What are the different types of pointers used in c language?
What is structure padding in c?
Where static variables are stored in memory in c?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Explain two-dimensional array.
Write a program to find the biggest number of three numbers in c?
What is the difference between abs() and fabs() functions?