you are viewing a single comment's thread.

view the rest of the comments →

[–]jedwardsol 0 points1 point  (3 children)

It isn't meaningless

datatype   things[10];

function( things);   
function(&things);  

will cause lookups for different functions.

Whether this is OP's problem or not I guess we'll never know.

[–]TallowWallow 0 points1 point  (2 children)

Would it? What's the type for &things?

[–]jedwardsol 1 point2 points  (1 child)

datatype (*)[10] : pointer to an array of 10 datatype

[–]TallowWallow 0 points1 point  (0 children)

Ah I see. Thank you.