What will the following segment of code output if 11 is entered at the keyboard?int number;cin >> number;if (number > 0) cout << "C++";else cout << "Soccer";cout << " is ";cout << "fun" << endl;
A. C++ is fun
B. Soccer is funC++
C. Soccer is fun
D. None of the above