Those 2 lines of code as shown would result in several errors. Both lines should end in ; and ChekcTable is misspelled.
Also, you haven't said what the errors are.
You aren't giving us enough to see what's wrong.
The code you posted (if it had no syntax errors) should work though.
int** Table is not a two-dimensional array. It is a pointer to pointer. That to pass it to a function and use the syntax of accessing elements as of two-dimensional array you should also declare two additional parameters in the function one of which will specify the first dimension and the other will specify the second dimension. For example