Vidyalelo
C++ Programming · Q1006

C++ miscellaneous

Programming · C++ Programming · question 1006

Q1006

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 << mycount; return 0;

A.
33
Answer
B.
44
C.
22
D.
55

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board