int contains(const char* word, const char* pattern) {
int pCount = 0, pLength = strlen(pattern);
char i;
...
void freeArray(int **a, int m) {
int i;
for (i = 0; i < m; ++i) {
...
C Freeing memory of a Multidi...
Is this the correct way to ...
I wrote the following funct...