char* findchar(char *string, char zeichen){ char *position = string; while(*position != zeichen){ *position++; } return position; }