fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. char s[8]="Hello";
  6. int i=0;
  7. while(s[i]!='\0')
  8. {
  9. printf("%c",'s[i]');
  10. i++;
  11. }
  12. printf("\n");
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
]]]]]