Hello,
how to get the item count of an array of structs?
For example:
Code:
struct intArr
{
int i;
int y;
}
intArr ar[10]; // here!
sizeof(ar) is wrong!?

thanks
break;