Question: Q 5 2 : What will be the output after the following C + + statements have been executed? int a { 4 } ;

Q52: What will be the output after the following C++ statements have been executed?
int a{4};
int b{12};
int c{37};
int d{51};
if (a < b){
cout <<"a < b"<< endl;
}
if (a > b){
cout <<"a > b"<< endl;
}
if (d <= c){
cout <<"d <= c"<< endl;
}
if (c != d){
cout <<"c != d"<< endl;
}
a. a < b
c != d
b. a < b
d <= c
c != d
c. a > b
c != d
d. a < b
c < d
a != b

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!