Skip to content

Instantly share code, notes, and snippets.

@derofim
Created August 14, 2015 07:53
Show Gist options
  • Select an option

  • Save derofim/5d37a8a61d5078d6add3 to your computer and use it in GitHub Desktop.

Select an option

Save derofim/5d37a8a61d5078d6add3 to your computer and use it in GitHub Desktop.
int max ( int a, int b, int c )
{
int m = ( a > b ) ? a : b;
return ( m > c ) ? m : c;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment