C++ Institute C++ Certified Professional Programmer CPP Question # 17 Topic 2 Discussion

C++ Institute C++ Certified Professional Programmer CPP Question # 17 Topic 2 Discussion

CPP Exam Topic 2 Question 17 Discussion:
Question #: 17
Topic #: 2

What happens when you attempt to compile and run the following code?

#include

#include <algorithm>

#include

using namespace std;

int main () {

int t[] = {1,2,3,2,3,5,1,2,7,3,2,1,10, 4,4,5};

vector v (t,t+15);

int number = count(v.begin(), v.end(), 2);

cout<< number<

return 0;

}

Program outputs:


A.

4


B.

3


C.

2


D.

0


E.

compilation error


Get Premium CPP Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.