I am passing an array of int with 4 elements into a function and sizeof(array)/sizeof(array[0]) is saying I have fewer elements.
Here's example of what's happening:
int
main() {
// declaring literal array
int array[] = {1,2,3,5};
// prints 16/4 (correct output for 4 elements)
printf("%d/%d\n", sizeof(array), sizeof(array[0]));
function(array);
return 0;
}
void
function(int array[]) {
// printing 8/4 instead of 16/4
printf("%d/%d\n", sizeof(array), sizeof(array[0]));
}

matrix_transposition_keydeclared?? The original question usedarray[]in the printf infunction()this does not, and no longer even compiles. – WhozCraig Feb 23 at 22:00