fork(9) download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. int x = 4;
  6. std::cout << (x ^ 2); // Prints 6
  7. }
  8.  
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
6