Skip to content

Instantly share code, notes, and snippets.

@codehakase
Last active August 29, 2015 14:08
Show Gist options
  • Save codehakase/3644a6a6f9ecc779f440 to your computer and use it in GitHub Desktop.
Save codehakase/3644a6a6f9ecc779f440 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
int b = 2;
int a = 42;
if (b > 3)
if (a > 3) b += 1;
else b -= 1;
printf("%d\n", b);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment