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
Write a program to print “hello world” without using semicolon?
Can you please compare array with pointer?
How can you increase the size of a dynamically allocated array?
What is the use of putchar function?
How can you invoke another program from within a C program?
Describe the difference between = and == symbols in c programming?
Can we use any name in place of argv and argc as command line arguments?
What is the translation phases used in c language?
Are pointers integers in c?
What are the 5 types of organizational structures?
Why c is called a middle level language?
write a program to generate address labels using structures?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Why c is called procedure oriented language?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.