Skip to content

Instantly share code, notes, and snippets.

@jneufeld
Created December 3, 2011 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jneufeld/1426359 to your computer and use it in GitHub Desktop.
Save jneufeld/1426359 to your computer and use it in GitHub Desktop.
K&R Braces
/* Here's what I've been doing lately */
int f( int x )
{
if( x )
{
x++;
}
return x;
}
/* The K&R way */
int f (int x)
{
if (x) {
x++;
}
return x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment