1.
Write a program that:
Declares a 1D integer array of size 10
Takes input from the user
Displays all elements
2. Write a program to:
Store 5 numbers in a 1D array
3. Find and display the maximum and minimum values.
4. Write a program that:
Stores N numbers in a 1D array
5. Calculates and displays the sum and average.
6. Find the largest element of an array using pointer arithmetic.
7. Display array elements in reverse order using pointer.
8. Count even and odd numbers in an array using pointer.
9. Write a program that:
Copies elements of one 1D array into another array
10. Write a program to:
Sort the elements of a 1D array in ascending order.
11. Write a program that:
Declares a 2D array (3×3 matrix)
Takes input from the user
12. Displays the matrix in matrix form.
13. Write a program to:
Store values in a 2D array
Calculate the sum of all elements
14. Write a program that:
Calculates and displays the sum of each row of a 2D array
15. Write a program that:
Calculates and displays the sum of each column of a 2D array
16. Write a program to:
Add two matrices of same size
Store the result in a third matrix.