sorry, but i can't find any info on push back function plz help
c++ push back function
Collapse
X
-
Tags: None
-
Please try to add more information so that people out here can help u.Originally posted by zerobinarysorry, but i can't find any info on push back function plz help
U want help in which push_back function?
Raghuram -
sorry i didn't know there is more than one push back function
homework.push_b ack(x)
hope this info will help
sorry about the previous postComment
-
-
Comment
-
Yes. Part of becoming a good C++ developer is researching topics.
I just did a Google on push_back and got 527,000 web pages.
Nothing I can say will add to that volume of documentation.Comment
-
If this is a question from real code, take a look at the homework object. That will help to limit what is being looked at.
The STL containers (vector, list, etc.) have a push_back method. This does exactly what you expect. It pushes an item to the rear or end of the object's list.Comment
Comment