if i want to "Delete", or not write the first 4 characters of a memory block... how do i do so?
heres some sample code
in.open ("C:\\moviecopy.wmv", ios::binary );
in.seekg (0, ios::end);
length = in.tellg();
in.seekg (0, ios::beg);
buffer = new char [length]...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.