fork(1) download
  1. #include <stdio.h>
  2. main()
  3. {
  4. int i=1,j;
  5. int k =1 + j = i ;
  6. printf("%d%d%d\n", i,j,k);
  7. }
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’ [-Wimplicit-int]
 main()
 ^~~~
prog.c: In function ‘main’:
prog.c:5:14: error: lvalue required as left operand of assignment
 int k =1 + j = i ;
              ^
stdout
Standard output is empty