fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int variant = 0x10; // Declared in HEX format;
  6.  
  7. if (variant & 0x1){ // If the LSB is 1
  8. cout << "axious!!!";
  9. } else
  10. {
  11. cout << "It's something else!!!";
  12. }
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 3140KB
stdin
Standard input is empty
stdout
It's something else!!!