0% found this document useful (0 votes)
41 views

Data Structure Lab List - I

This document lists 10 programming assignments involving arrays for a data structures lab. The assignments include entering and displaying elements and addresses in an array, displaying odd/even numbers and sums, prime numbers and products, reversing the order, checking for symmetry, searching for an element, inserting and deleting elements, adding corresponding elements of two arrays into a third array, and checking if two arrays are equal.

Uploaded by

Manab Chetia
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
41 views

Data Structure Lab List - I

This document lists 10 programming assignments involving arrays for a data structures lab. The assignments include entering and displaying elements and addresses in an array, displaying odd/even numbers and sums, prime numbers and products, reversing the order, checking for symmetry, searching for an element, inserting and deleting elements, adding corresponding elements of two arrays into a third array, and checking if two arrays are equal.

Uploaded by

Manab Chetia
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

DATA STRUCTURE LAB LIST - I

1. WAP to enter elements into an array , display it and their corresponding address too. 2. WAP to display odd and even numbers in an array and also their respective sums . 3. WAP to display the prime numbers in an array and also their product . 4. WAP to display the elements in the reverse order . 5. WAP to check whether the array is symmetric or not . 6. WAP to search a given element in an array . 7. WAP to insert an element into an user-defined position into an array . 8. WAP to delete an user-defined element from an array . 9. WAP to enter 2 arrays ( integer and float ) , add the corresponding elements , store it in a third array and display it . 10.WAP to check two given arrays are equal or not . If not , display the positions in which they differ .

You might also like