-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpgave10-3.c
48 lines (36 loc) · 1.01 KB
/
Opgave10-3.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define max_ord 20
void flertal(char ord[]);
int main(void){
char substantiv[max_ord];
for (;;) {
printf("Enter a noun in singular form: ");
scanf("%s", substantiv);
if ((strcmp(substantiv, "done")) == 0)
break;
flertal (substantiv);
printf("The plural form of your word is: %s\n", substantiv);
}
return EXIT_SUCCESS;
}
void flertal(char ord[]) {
int laengde;
char substantiv;
laengde = 1;
laengde = strlen(ord);
if (ord[laengde - 1] == 'y') {
ord[laengde - 1] = 'i';
ord[laengde ] = 'e';
ord[laengde + 1] = 's';
ord[laengde + 2] = '\0';
} else if (ord[laengde - 1] == 's' ||
(ord[laengde - 2] == 'c' && ord[laengde - 1] == 'h') ||
(ord[laengde - 2] == 's' && ord[laengde - 1] == 'h')) {
strcat(ord, "es");
} else {
strcat(ord, "s");
printf("New word is: ", &substantiv);
}
}