So this is what my function declaration looks like:
void mdump(char* startAdrs, char* endAdrs);
In my code, here's how I'm calling it:
char f = 'f';
char d[200*sizeof(int)];
mdump(&d, &f);
The error I'm getting is:
invalid arguments 'Candidates are: void mdump(char*, char*)'
Why am I not able to call the mdump function properly?