HARMAN Interview Question

What is deadlock? Write macro to flip a bit in a Byte.

Interview Answer

Anonymous

Jun 12, 2017

#define FLIP_BIT(NUM,BIT) (NUM^(1<

20