Skip to content

Instantly share code, notes, and snippets.

@zrbecker
Created May 12, 2011 23:35
Show Gist options
  • Select an option

  • Save zrbecker/969682 to your computer and use it in GitHub Desktop.

Select an option

Save zrbecker/969682 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
int n = 0;
while (n + 1 > n)
++n;
printf("Done!\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment