Answers for "how to add an item to list in C++"

C++
0

c++ append to list

// list::push_back
#include <iostream>
#include <list>

int main ()
{
  std::list<int> mylist;
  int myint;

  std::cout << "Please enter some integers (enter 0 to end):n";

  do {
    std::cin >> myint;
    mylist.push_back (myint);
  } while (myint);

  std::cout << "mylist stores " << mylist.size() << " numbers.n";

  return 0;
}
Posted by: Guest on May-28-2020

Code answers related to "how to add an item to list in C++"

Browse Popular Code Answers by Language