At Springboard, we know how to get you a job in data science. With Springboard’s Data Science Career Track, you’ll master data science with a curriculum built by industry experts. You’ll work on real projects, and get 1-on-1 mentorship from a data scientist.
CFile f;
f.Open( strFileName, CFile::modeRead | CFile::modeWrite );
DWORD i;
const DWORD v22 = 22;
while( f.Read( &i, 2 ) == 2 )
{
if( i == 0 )
{
f.Seek( -2, CFile::current );
f.Write( &v22 );
}
}
If there is an issue with byte order, then you just need to replace v22=22 with v22=0x1600;