Q-33: | Write a C/C++ program to find the position of all the occurrences of the given element in an array. |
---|
OUTPUT
Enter the size of the Array: 6 Enter 6 Elements: 45 89 56 45 12 45 Given Array: 45 89 56 45 12 45 Enter the element to be searched: 45 45 found at position: 1, 4, 6,
OUTPUT
Enter the size of the Array: 8 Enter 8 Elements: 12 45 78 12 56 98 12 55 Given Array: 12 45 78 12 56 98 12 55 Enter the element to be searched: 12 12 found at position: 1, 4, 7,