C++ Institute CPP Question Answer
What will happen when you attempt to compile and run the code below, assuming that you enter the following sequence: true true
 #include 
 #include 
using namespace std;
int main ()
{
bool a,b;
cin>>a>>b;
C++ Institute CPP Question Answer
What will happen when you attempt to compile and run the code below, assuming that you enter the following sequence: true true
 #include 
 #include 
using namespace std;
int main ()
{
bool a,b;
cin>>a>>b;