Basic Comparisons

This commit is contained in:
gingerBill
2016-08-01 00:34:15 +01:00
parent 70f6282f41
commit 88e05ad2b2
7 changed files with 124 additions and 46 deletions
+2
View File
@@ -1,4 +1,6 @@
int main() {
float a = 0.5;
float b = 1.5;
int c = a < b;
return 0;
}