I'm trying to print the output of a function listPerms() by passing its output (a 2D int array) to another function printPerms(). The thing is, I keep getting the following error:
Undefined symbols:
"printPerms(int**)", referenced from:
_main in ccsaoRuY.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
Here are all (I hope) the relevant parts of the code: