#include #include #include #define SIZE 10 typedef char string [30]; void pluralize(const string noun,string plural); int main() { int counter=0; string temp; int i=0; string names[SIZE]; string plural[SIZE]; do { printf("%d-Enter a singular noun :",i+1); scanf("%s",temp); if(strcmp(temp,"exit")==0) { break; } strcpy(names[i],temp); i++; counter++; } while(i<10); printf("---------------------------\n---------------------------\n"); printf(" Nouns\t\tplurals\n"); printf(" -----\t\t-------\n"); printf(" -----\t\t-------\n"); for(i=0; i