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