What is the value of p in the following C++ code snippet?
Posted: Wed Jul 13, 2022 7:50 pm
#include <iostream> using namespace std; 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; }
a) 12
b) 0
c) 2
d) 16
a) 12
b) 0
c) 2
d) 16