13 Jun
2014
13 Jun
'14
11:23 a.m.
On 13/06/14 16:10, Phil Mayers wrote:
On 13/06/14 16:00, Phil Mayers wrote:
Looks like 199b27e might be a bit awry; think the sizeof() calls have
Never mind, that's me being C-ignorant.
Nope, I was right; sizeof() on an array argument returns the pointer size, not the array size. i.e. this: void test(int a[8]) { } ...is actually: void test(int *a) { }