stock SpaceChange(text[], ch = ' ') { for(new i; text[i] != EOS; i++) if(text[i] == ch) text[i] = '_'; return text; } new A[]="World is not enought"; printf("%s",SpaceChange(A));