✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
10. What will be the output of the following code?
#include <iostream>
int main() {
int x = 10;
int y = 20;
std::cout << x == y << std::endl;
return 0;
}