What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
int a = 8;
cout << "ANDing integer 'a' with 'true' :" << (a && true);
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int a = 8;
cout << "ANDing integer 'a' with 'true' :" << (a && true);
return 0;
}
A. ANDing integer 'a' with 'true' :8
B. ANDing integer 'a' with 'true' :0
C. ANDing integer 'a' with 'true' :1
D. ANDing integer 'a' with 'true' :9
Answer: Option A
Join The Discussion