Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Gibt es in C eine Funktion mit der ich z.B. aus der Zeichenkette char string [] = "Hallo Welt"; das " " durch ein "_" ersetzen kann ? Oder muß ich mir diese Funktion selber schreiben ?
char *ptr; if( (ptr=strchr(str,' ')) ) *ptr='_';
DANKE