What is the output of this code
    #include iostream
int main()
{
int p;
bool a = true;
bool b = false;
int x = 10;
int y = 5;
p = ((x | y) + (a + b));
cout p;
return 0;
}

Posted on by