summaryrefslogtreecommitdiff
path: root/if.c
diff options
context:
space:
mode:
Diffstat (limited to 'if.c')
-rw-r--r--if.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/if.c b/if.c
deleted file mode 100644
index 6dfbdc8..0000000
--- a/if.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <stdio.h>
-#include <cs50.h>
-
-int main(void)
-{
-int x, y;
-if (x < y) {
- printf("x is less than y\n");
-} else if (x > y) {
- printf("x is greater than y\n");
-} else {
- printf("x is equal to y\n");
-}
-}