what is the algorithim for the prototype function.

Newbie Member
3Nov2007,19:31   #1
avinash6174's Avatar
/* The offset & length are in terms of bits..
the fourth parameter is a value which is to be stored in char pointer that is pData
*/
void putBits(char*pData , int offset , int length , int value )
{
}

int main()
{
char *pData = new char[90];

putBits(pData , 9 , 13 , 200);

}