Is there a more concise way to write the second line of this function without repeating a
reduntantly?
void myfunc()
{
bool a = false;
a = !a;
}
Is there a more concise way to write the second line of this function without repeating a
reduntantly?
void myfunc()
{
bool a = false;
a = !a;
}