fork download
  1. int main()
  2. {
  3. int i,j;
  4. for(i=5,j=0;i>0;i/=2,j+=i);
  5. prinf("%d",j);
  6. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:5: warning: implicit declaration of function ‘prinf’
prog.c:6: warning: control reaches end of non-void function
/home/r1eNrr/ccVZ2fR4.o: In function `main':
prog.c:(.text+0x1e): undefined reference to `prinf'
collect2: ld returned 1 exit status
stdout
Standard output is empty