What's the difference between a linked list and an array?
Answer Posted / shilpa
array is static ,where we need to intialize the size in
starting , but linkelist is dynamic , we can dynamically
add the any variable in to the list
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
Can include files be nested? How many levels deep can include files be nested?
Explain what is page thrashing?
What is the use of pointers in C?
What does *p++ do?
Are enumerations really portable?
What are the valid places to have keyword “break”?
What is the difference between text and binary i/o?
What is page thrashing?
Explain the binary height balanced tree?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Explain the bubble sort algorithm.
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Write a program to swap two numbers without using the third variable?
What is table lookup in c?
Explain what is the difference between #include and #include 'file' ?