Skip to content

Instantly share code, notes, and snippets.

@anvol
Last active April 14, 2018 14:26
Show Gist options
  • Save anvol/29f50256dd2856b99387b351fe786b3b to your computer and use it in GitHub Desktop.
Save anvol/29f50256dd2856b99387b351fe786b3b to your computer and use it in GitHub Desktop.
long find_max(long *arr, long count) {
long ret = arr[0];
for(long i=1; i < count; i++){
if (ret < arr[i]) ret = arr[i];
}
return ret;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment