Given this snippet i know it sets the first element of the array A to zero but what about the rest of the arrays dont they increase while the size decrements untilz size is 0?
Code:void Mystery (int A[ ], int size) { if (size > 0){A[0] = 0; Mystery (A+1, size -1);} }



LinkBack URL
About LinkBacks




