Last active
July 25, 2018 06:46
-
-
Save ZiKT1229/91dbcbfc928541d662fc8185bfd74d84 to your computer and use it in GitHub Desktop.
linearSearchExample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void linearSearch(int array[]) | |
{ | |
for (int i=0; i<array_size; i++) | |
if (array[i]==5) | |
cout<<array[i]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment