Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. aliakmonas

    Recursion-Backtracking in C function arguments

    Thanks for replies but i solved the problem I was true i could not pass the 2-dimensional array to a function as an argument and hoping that this array would be a local variable to the function. So, what i did actually was the following: Have the array as a global variable: int Array[8][8]...
  2. aliakmonas

    Recursion-Backtracking in C function arguments

    Trust me i have tried it and still does not work. The CopyArray is changed as well as we pass it as a parameter to a function. Maybe it is not possible every nested caller to have its personal copy, what do you think?
  3. aliakmonas

    Recursion-Backtracking in C function arguments

    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...

Part and Inventory Search

Back
Top