Question: 25
(Choose 2 answers)
FJOVERFLOW.Com
What is the result of the following C++ expression?
#include <iostream>
using namespace std;
int main() {
int x x = 4;
int y = 2:
bool result = (x > y) ? true :
cout << result;
return 0;
A. TRUE
B. FALSE
C. 1
D. 0
E. All of the others