Skip to content

Instantly share code, notes, and snippets.

@kioba
Created January 28, 2016 12:09
Show Gist options
  • Save kioba/dd4cc1bc2a570723bfc2 to your computer and use it in GitHub Desktop.
Save kioba/dd4cc1bc2a570723bfc2 to your computer and use it in GitHub Desktop.
infinite loop?
int main() {
int x = 0;
while (x < 5) {
x = x++;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment