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