S
Sortie
typedef float Vector[3];
Vector arr[2][2];
Vector *pv = &arr[0][0];
char c = 'a';
memcpy(pv[0][0], &c,1); /* incompatible type for argument 1 of
`memcpy' */
pv[0][0] refers a Vector, so why does it appear as if it refers
to a float?
Vector arr[2][2];
Vector *pv = &arr[0][0];
char c = 'a';
memcpy(pv[0][0], &c,1); /* incompatible type for argument 1 of
`memcpy' */
pv[0][0] refers a Vector, so why does it appear as if it refers
to a float?