Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#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", 5 == 55); // Returns 0 (false) because 5 is not equal to 55 return 0; }
1
0
0