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

1d array practice programs (2)

Uploaded by

himalayanb4
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views

1d array practice programs (2)

Uploaded by

himalayanb4
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Object 1

1. Write a C program to read and print elements of array.


2. Write a C program to print all negative elements in an array.
3. Write a C program to find sum of all array elements.
4. Write a C program to find maximum and minimum element in an array.
5. Write a C program to find second largest element in an array.
6. Write a C program to count total number of even and odd elements in an
array.
7. Write a C program to count total number of negative elements in an
array.
8. Write a C program to copy all elements from an array to another array.
9. Write a C program to insert an element in an array.
10. Write a C program to delete an element from an array at specified
position.
11. Write a C program to count frequency of each element in an array.
12. Write a C program to print all unique elements in the array.
13. Write a C program to count total number of duplicate elements in an
array.
14. Write a C program to delete all duplicate elements from an array.
15. Write a C program to merge two array to third array.
16. Write a C program to find reverse of an array.(modify the array itself)
17. Write a C program to put even and odd elements of array in two
separate array.
18. Write a C program to search an element in an array.
19. Write a C program to sort array elements in ascending or descending
order.
20. Write a C program to sort even and odd elements of array separately.
21. Write a C program to left rotate an array.(rotate according to the
number of the rotation)
22. Write a C program to right rotate an array.(rotate according to the
number of the rotation)

You might also like