Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#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