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
#include
// Import the boolean header file int main() { bool isProgrammingFun = true; bool isFishTasty = false; printf("%d\n", isProgrammingFun); // Returns 1 (true) printf("%d", isFishTasty); // Returns 0 (false) return 0; }
1
0