← Back to Question List
C++ Quiz #12
Ternary Operator
What is the output of this code?
📄 Code
1#include <iostream>2using namespace std;34int main() {5 int x = 8;6 string result = (x % 2 == 0) ? "even" : "odd";7 cout << result << endl;8 return 0;9}