What is the value of p in the following C++ code snippet?#include iostreamusing 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;}
The function of water in our body is :
What is the output of C Program.?int main()
{
int a=0, b=0;
while(++a 4)
printf("%d ", a);
while(b++ 4)
printf("%d ", b);
return 0;
}