fork download
  1. #include<stdio.h>
  2. main()
  3. {
  4. int j,k;
  5. j=k=1000;
  6. k=21>3?122:j=90;
  7. printf("%d %d",k,j);
  8. return 0;
  9. }
  10.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:2:1: warning: return type defaults to ‘int’ [-Wreturn-type]
prog.c: In function ‘main’:
prog.c:6:17: error: lvalue required as left operand of assignment
stdout
Standard output is empty