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