what is the difference between arrays and linked list
Answer Posted / anu
In arrays v cant delete elements in middle but in Linked
list v can do this.
| Is This Answer Correct ? | 71 Yes | 139 No |
Post New Answer View All Answers
Distinguish between actual and formal arguments.
Give the rules for variable declaration?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
How many levels deep can include files be nested?
Is c high or low level?
What is typedef example?
What is pointer & why it is used?
What is the difference between malloc() and calloc() function in c language?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is malloc return c?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What type is sizeof?
When is a “switch” statement preferable over an “if” statement?
How can I generate floating-point random numbers?
What is the concatenation operator?