Answered Questions

  • differences between Arrays and Linked lists

    What are the differences between Arrays and Linked lists and why we go for linked lists if we have pointers to arrays?

    Parshotam

    • Sep 20th, 2011

    array is a group of similar data items which sharing a common name we can defined it by the first data type, name of array and then the size as follows: int array[10]; the data type can be from oth...

    Renuka Negi

    • Sep 19th, 2011

    1. Array is a linear data structure but linked list is linear and non-linear data structure.
    2. Array is expensive than linked list.