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
8 months agoDaniela
9 months agoLizbeth
9 months agoKenny
9 months agoSheldon
9 months agoCherry
9 months agoTiffiny
9 months agoRozella
9 months agoLouis
9 months agoJamal
10 months agoArthur
10 months agoCherelle
10 months ago