fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int y;
  6. 5 > 3 ? y=5 : y=3;
  7.  
  8. return 0;
  9. }
  10.  
Compilation error #stdin compilation error #stdout 0s 10320KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:6:17: error: lvalue required as left operand of assignment
  5 > 3 ? y=5 : y=3;
                 ^
stdout
Standard output is empty