Q83
What will be the output of the following C++ code? #include #include #include using namespace std; int main () int myints[] = 10, 20, 30, 30, 20, 10, 10, 20; int mycount = count (myints, myints + 8, 10); cout myvector (myints, myints+8); mycount = count (myvector.begin(), myvector.end(), 20); cout << "20 appears " << mycount << " times. "; return 0;
A.
3 3
AnswerB.
3 1
C.
8
D.
9
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board