what is the difference between arrays and linked list
Answer Posted / shweta
In array,memory is managed randomly...
but, in linked list memory is managed in a heap concept..
| Is This Answer Correct ? | 13 Yes | 6 No |
Post New Answer View All Answers
If I have a char * variable pointing to the name of a function ..
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Write a simple code fragment that will check if a number is positive or negative.
What is a pointer in c plus plus?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Why is main function so important?
What is ctrl c called?
How can I find out the size of a file, prior to reading it in?
What is meant by type casting?
Is there anything like an ifdef for typedefs?
What Is The Difference Between Null And Void Pointer?
Can you write a programmer for FACTORIAL using recursion?
Are local variables initialized to zero by default in c?