CSE21P6 - Data Structure Lab¶
Array Operations and Elementary Programs¶
Term 201¶
Exp 1. Implementation of a program in C that show that
- Prime number within a given range.
- Fibonacci number within a given range.
Exp 2. Write a program to find the solution of the quadratic equation \(ax^2 + bx + c = 0\).
Term 211¶
Exp 1. Design, Develop and Implement a menu driven program in C for the following Array operations.
- Creating an Array of N integer elements.
- Display of Array elements with suitable headings.
- Inserting an element (
ele) at a given valid position (pos). - Deleting an element at a given valid position (
pos).