Arrays assignments in C language with Solutions.
1. Write a program in C language to read N numbers of elements and find the sum of elements in an array.
2. Write a C program to find the largest or maximum element in an array.
3. Write a C program to find the smallest or minimum element in an array.
4. Write a program to calculate the average of elements in an array.
5.Write a C program to input elements in array and print all negative elements.
6. Write a Program in C to find the frequency or occurence of each element of an array.
7. Write a program in C to reverse an array.
8. Write a program to copy elements from one array to another using c programming.
9. Write a program in c to merge two arrays into a single array.
10. Write a program using c to sort elements in an array in ascending order.
11. write a program in c with explanation to sort elements in an array in descending order.
12. write a program in c language to search for an element in an array using linear search.
13. Write a program in c to search an element in a sorted array.
14. write a program in c language to find the second largest element in an array.
15. Write a program in c language to remove duplicate elements from an array.
16. write a program in c to find the intersection of two arrays.
17. Develop a program in c programming to find the union of two arrays.
18. Write a program in c programming to shift elements in an array to the left by a given number of positions.
19.write a program in c to check if two arrays are equal.
20. Write a program in c language to find the sum of diagonal elements in a matrix.
21. write a program using c language to transpose a matrix.
22. write a program in c language to multiply two matrices.
23.write a program in c to find the saddle point in a matrix.
24. write a program using c programming language to perform matrix addition.
25.write a c program to perform matrix subtraction.
26. Write a program in c to check if a given matrix is symmetric.
27. write a program in c language to find the sum of each row and each column in a matrix.
28. write a program in c to find the equilibrium index of an array.
29. write a program using c language to find the kth smallest element in an unsorted array.
30. write a program in c to sort an array using bubble sort algorithms.
31. write a program in c to sort an array using selection sort algorithms.
32. write a program in c language to sort an array using insertion sort algorithms.
33. write a program in c to sort an array using merge sort algorithms.
34. write a program in c language to sort an array using quick sort algorithms.
35. write and explain a program in c to sort an array using heap sort.
36. write and explain a program in c language to sort an array using counting sort.
37. write a program in c language to delete duplicate elements in an array.
38. Write a program in c to rearrange positive and negative numbers alternatively in an array.