0
Does cpp provide STL in which stack functions like push, pop etc are available? If yes which is that library?
12/27/2016 12:58:46 PM
2 Answers
+4
#include <stack> and for example if you want a stack of strings you just do stack<string> mystack
Duhh!! Just like vector it seems... Thanks man!!
Send us a message