fork(1) download
  1. #include <stdio.h>
  2. char i, block[3]={1,2,3};
  3.  
  4. int main() {
  5. while(i < sizeof(block))
  6. printf("%d", block[i++]);
  7. return 0;
  8. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
123