fork download
  1. /* ! (1 || 0) = False { ! (1 || 0)=!(1)=False }
  2. ( 1 || (1 && 0 ))=True { ( 1 || (1 && 0 ))=1 || 0 = 1 = True }
  3. ! ( ( 1 || 0 ) && 0 )=True { ! ( ( 1 || 0 ) && 0 ) = ! (1 && 0) = ! (0) = True }
  4. ! (1 == 0)= True { ! (1 == 0) = !(False)=True }
  5.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1:1: error: unterminated comment
 /* ! (1 || 0) = False { ! (1 || 0)=!(1)=False }
 ^
stdout
Standard output is empty