Is there any way to pass only two dimensions of a 3D array.
for arr[2][3][4], lets say I want to use [3] and [4] to calculate something, and i only need those dimensions. Say i want to pass it to a function called calculate. I would try this...but it isn't working...
Code:float calculate(float arr[3][4]); ... ... printf("We have found %f", calculate(arr[2]);



3Likes
LinkBack URL
About LinkBacks



