How to flip the 8th bit in a given 32 Bit integer? uint32_t val= 0xA1B2C3D4; All Questions › Category: Embedded System › How to flip the 8th bit in a given 32 Bit integer? uint32_t val= 0xA1B2C3D4; 1 Vote Up Vote Down vaishnavi.talawar asked 3 years ago a) Val &(1<<8)b) val^(1<<8)c) val^(1<<7)d) Val | (1<<7)