fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char s[]="remove white space";
  6. int i;
  7. for(i=0;s[i];++i)
  8. if(s[i]==' ')
  9. s[i]='\a';
  10. printf("%s",s);
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
removewhitespace