✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
23. What will this program print?
#include <iostream>
using namespace std;
int main() {
int x = 3;
if (x = 5) {
cout << "True" << endl;
} else {
cout << "False" << endl;
}
return 0;
}