Consider a variable unsigned int a; in C.
unsigned int a;
Now say I want to set any i\'th bit in this variable to \'1\'.
Note that the variable has some value.
Bitwise or it. e.g. a |= (1<
a |= (1<