001
17.04.2004, 23:53 Uhr
Pablo
Supertux (Operator)
|
Bsp:
C++: |
#include <stdio.h> void mystrcpy(char* buffer, const char* text) { if (!buffer || !text) return; // ohne auf Fehler zu achten, text in buffer kopieren while(*text) *buffer++ = *text++; *buffer=0; // \0 am Ende }
int main() { char arr[30]; mystrcpy(arr, "Hello, World"); // array "arr" als Parameterübergabe printf("%s\n", arr); mystrcpy(arr, "Servuzzzzz......."); printf("%s\n", arr); return 0; }
|
Ausgabe:
Hello, World Servuzzzzz.......
-- A! Elbereth Gilthoniel! silivren penna míriel o menel aglar elenath, Gilthoniel, A! Elbereth! Dieser Post wurde am 17.04.2004 um 23:55 Uhr von Pablo editiert. |