C++ Institute CPP Exam - Topic 2 Question 59 Discussion
Which lines of the code below contain proper instantiation of queue objects?#include #include #include #include #include using namespace std;int main(){deque mydeck;list mylist;vector myvector;queue first; // line Iqueue second(mydeck);// line IIqueue third(second);// line IIIqueue fourth(mylist);// line IVqueue fifth(myvector);// line Vreturn 0;}
A) line I and B) line II and C) line III
Billy
10 months agoDaniela
10 months agoLizbeth
10 months agoKenny
10 months agoSheldon
11 months agoCherry
11 months agoTiffiny
11 months agoRozella
11 months agoLouis
11 months agoJamal
11 months agoArthur
11 months agoCherelle
11 months ago