Skip to content

Instantly share code, notes, and snippets.

@lgarczyn
Created August 10, 2016 08:40
Show Gist options
  • Save lgarczyn/8bdc351b43a0ebbc30f4f83923247f7d to your computer and use it in GitHub Desktop.
Save lgarczyn/8bdc351b43a0ebbc30f4f83923247f7d to your computer and use it in GitHub Desktop.
unsigned int average(unsigned int a, unsigned int b)
{
return (a / 2) + (b / 2) + (a & b & 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment