What is the output of the following program?
#include
using namespace std;
int main()
{
int x;
int a = 265;
cout << (x = 25) << endl;
cout << (x == 90) << endl;
cout << (x > 10) << endl;
cout << (3 * x < a) << endl;
cout << (10 * x == a - 15) << endl;
return 0;
}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.