diff --git a/Lists/list_stl.cpp b/Lists/list_stl.cpp index 0045f89..74fc3f7 100644 --- a/Lists/list_stl.cpp +++ b/Lists/list_stl.cpp @@ -1,15 +1,15 @@ -#include -#include +#include //header library +#include //header library using namespace std; -int main() { +int main() { // driver function list l; //Init - list l1{1,2,3,10,8,5}; + list l1{1,2,3,10,8,5}; //first object of list data type //Different Datatype - list l2{"apple","guava","mango","banana"}; + list l2{"apple","guava","mango","banana"}; //second object of list data type l2.push_back("pineapple"); //sort