Horje
roll binary c Code Example
roll binary c
// U can change the type by changing char to int
unsigned char rol(unsigned char value, unsigned char roll)
{
    roll = roll % sizeof(char) * 8;
    unsigned char mask_rolld = ~(0xFF >> roll);
    unsigned char lmb = (mask_rolld & value) >> (sizeof(char) * 8 - roll);
    return (value << roll) | lmb;
}




C

Related
prime chec kin c Code Example prime chec kin c Code Example
imprimir valor no octave Code Example imprimir valor no octave Code Example
golden cobblestone modpack Code Example golden cobblestone modpack Code Example
random number between 2 in C Code Example random number between 2 in C Code Example
Which of the following are Cetaceans? Code Example Which of the following are Cetaceans? Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12