How can I remove a flag in C?

Viewed 103570

There is a variable that holds some flags and I want to remove one of them. But I don't know how to remove it.

Here is how I set the flag.

my.emask |= ENABLE_SHOOT;
3 Answers
Related