fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. enum E { e1 = 127, e2 };
  5.  
  6. int main() {
  7. char c = e2; // Undefined Behaviour, e2 (128) is out of valid range for char
  8. cout << c << endl;
  9. }
Success #stdin #stdout 0.02s 2724KB
stdin
Standard input is empty
stdout