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