fork download
  1. //Q88. Replace spaces with hyphens in a string.
  2. #include <stdio.h>
  3. int main() {
  4. char str[200];
  5. int i;
  6. gets(str);
  7. for(i=0; str[i]!='\0'; i++)
  8. if(str[i]==' ')
  9. str[i]='-';
  10. printf("%s", str);
  11. }
  12.  
Success #stdin #stdout 0.01s 5280KB
stdin
hello world
stdout
hello-world