Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
int main() { printf("%d\n", 10 == 10); // Returns 1 (true), because 10 is equal to 10 printf("%d\n", 10 == 15); // Returns 0 (false), because 10 is not equal to 15 printf("%d\n", 5.5 == 55); // Returns 0 (false) because 5.5 is not equal to 55 printf("%d\n", 3.8 == 3.8); // Returns 1 (true) because 3.8 is equal to 3.8 return 0; }
1
0
0
1