|
@ -2,6 +2,7 @@ |
|
|
#include <stdio.h> |
|
|
#include <stdio.h> |
|
|
#include <string.h> |
|
|
#include <string.h> |
|
|
|
|
|
|
|
|
|
|
|
//Funktion zum loeschen von einem Buchstaben |
|
|
void loescheBuchstaben(char *wort, char buchstabe) { |
|
|
void loescheBuchstaben(char *wort, char buchstabe) { |
|
|
int laenge = strlen(wort); |
|
|
int laenge = strlen(wort); |
|
|
int i, j = 0; |
|
|
int i, j = 0; |
|
@ -15,6 +16,7 @@ void loescheBuchstaben(char *wort, char buchstabe) { |
|
|
wort[j] = '\0'; |
|
|
wort[j] = '\0'; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//Funktion zum zaehlen wie oft ein Buchstabe vorkommt |
|
|
int zaehleBuchstaben(const char *wort, char buchstabe) { |
|
|
int zaehleBuchstaben(const char *wort, char buchstabe) { |
|
|
int zaehler = 0; |
|
|
int zaehler = 0; |
|
|
int laenge = strlen(wort); |
|
|
int laenge = strlen(wort); |
|
|