What's the difference between a linked list and an array?
Answer Posted / valli
Array is statically allocated group. Linked list is
dynamically allocated group.
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
Is struct oop?
Write a program to find the biggest number of three numbers in c?
What is stack in c?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Tell me when is a void pointer used?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
What does & mean in scanf?
Is it fine to write void main () or main () in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
I heard that you have to include stdio.h before calling printf. Why?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
What are the benefits of c language?
Is a pointer a kind of array?
What is the difference between malloc() and calloc() function in c language?
Write a program of advanced Fibonacci series.