Created
April 20, 2009 14:29
-
-
Save qnighy/98556 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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