Skip to content

Instantly share code, notes, and snippets.

@qnighy
Created April 20, 2009 14:29
Show Gist options
  • Save qnighy/98556 to your computer and use it in GitHub Desktop.
Save qnighy/98556 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void)
{
int x = 10;
if(x > 5) {
puts("x is greater than 5.");
} else {
puts("x is not greater than 5.");
}
if(x > 15) {
puts("x is greater than 15.");
} else {
puts("x is not greater than 15.");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment