• Write a menu driven program to execute the following functions:
1) Create an array
2) Display an array
3) Insert at any position in an array
4) Deletion at any position
• Write a C program to determine a given program is a sparse
matrix or not using arrays
• Write a program to generate a singly linked-list and perform
following operations:
1) Insert a node at any position
2) Delete a node at any position
3) Print the complete linked-list
• Write a program to generate a doubly linked-list and perform
following operations:
1) Insert a node at any position
2) Delete a node at any position
3) Print the complete linked-list
• Write a program to generate a circular linked-list and perform
following operations:
1) Insert a node at any position
2) Delete a node at any position
3) Print the complete linked-list
• Write a program to calculate the sum of two polynomials using
Linked-list
• Write a C program to determine a given program is a sparse
matrix or not using Linked-list
• Write a program to implement a stack using array .
• Write a program to implement Queue using array.