what is the difference between arrays and linked list
Answer Posted / bhumika garg
the main difference is that in array data is not linked to
each other but in linked lists data is connected to each
other as every node is connected to previous node.
| Is This Answer Correct ? | 47 Yes | 14 No |
Post New Answer View All Answers
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
How can I discover how many arguments a function was actually called with?
How do you convert strings to numbers in C?
What is the difference between c and python?
What does. int *x[](); means ?
Is c# a good language?
Is exit(status) truly equivalent to returning the same status from main?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
What are file streams?
What is the difference between a string and an array?
I need a sort of an approximate strcmp routine?
What is string length in c?
When the macros gets expanded?
What is the difference between procedural and declarative language?
In a switch statement, explain what will happen if a break statement is omitted?