Mega Code Archive

 
Categories / C++ / List
 

Instantiating an STL List of Integers

#include <list> int main () {     using namespace std;     list <int> listIntegers;     return 0; }