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