what is the use of using linked list and array?
Answer Posted / harsh srivastava
Linked List and array both are used continuous allocation of
memory. When we want to assign too many same type of data
sequentially into memory, at that time we use the Linked
list and array because taking separate variable for each
data is tedious and time consuming so we use the Linked list
and arrays.
Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
Explain that why C is procedural?
Is calloc better than malloc?
What is the purpose of 'register' keyword in c language?
How can you be sure that a program follows the ANSI C standard?
Why we use conio h in c?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
How can you increase the size of a statically allocated array?
Write a program of prime number using recursion.
Explain what does the format %10.2 mean when included in a printf statement?
Why is sprintf unsafe?
What is the ANSI C Standard?
Give me the code of in-order recursive and non-recursive.
What is the purpose of type declarations?
what type of questions arrive in interview over c programming?