I have a character array in C into which I want to introduce errors by flipping some bits.
How can I flip bits and introduce errors?
|
For distributing the errors, use a random number generator. To flip a bit you can use the bit shifting and bitwise xor operators.
You can also flip more than one bit by using a bitmask other than
|
|||
|
|
|
You can flip bits using the xor operator:
For example, if |
|||
|
|
XOR 1on each bit that you want to flip. – Kerrek SB Aug 29 '11 at 14:48