As long as dst is declared as an array with a size, sizeof will return the size of that array in bytes: int dst[ARRAY_LENGTH]; memcpy( dst, src, sizeof(dst) ); ...
確定! 回上一頁