Guest User

Untitled

a guest
Jun 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. int main()
  2. {
  3. int search_array[SIZE] = {78, 45, 33, 1, 6, 41, 99, 54, 73, 28,
  4. 101, 60, 21, 82, 11, 15, 654, 36, 52, 70};
  5.  
  6. linearSearch(search_array, SIZE, search_value);
  7.  
  8. bubble_sort(search_array, SIZE);
  9. system("pause");
  10. }
Add Comment
Please, Sign In to add comment