-
What will be the output of this program?
#include
using namespace std;
int main()
{
int P = 20;
cout << "Given integer 'P' with 'true' :" << P && true;
return 0;
}
-
- Given integer 'P' with 'true' :20
- Given integer 'P' with 'true' :0
- Given integer 'P' with 'true' :2
- All of above
- None of these
Correct Option: A
Given integer 'P' with 'true' :20