Hi i am having the following problem:
I am using Recursion in C.
Clearly i have a function like that:
void Test(int times,int Array[5][5])
{
times++;
for (i=0;i<3;i++)
Test(times,Array[5][5]);
}
My problem: i cannot get 'earlier' versions of the 2-dimensional array when i do...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.