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
What does %p mean?
What is the difference between array and pointer?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
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.
What was noalias and what ever happened to it?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What is the use of define in c?
Do you know pointer in c?
Explain what is meant by high-order and low-order bytes?
What is this pointer in c plus plus?
What is function definition in c?
Why c is known as a mother language?
How do I read the arrow keys? What about function keys?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.