I heard from a friend that two dimensional arrays in C are only supported syntactically.
He told me to better use float arr[M * N]
instead of float[M][N]
because C compilers like the gcc can't guarantee that on every system/platform the data lies in series within the memory.
I want to use this as an argument in my master thesis but I don't have any referrence.
So first question:
Is that right what he's saying?
Second question:
Do you know if there is a book or an article where to find this statement?
Thanks + Regards