What is stl stack?
No Answer is Posted For this Question
Be the First to Post Answer
write a c++ to define a class box with length,breadth and height as data member and input value(),printvalue() and volume() as member functions.
help me i need a c++ program which takes sequesnce of characters and outputed sequence of their token taypes, work same compiler in lexical analysis phase
What is the stl, standard template library?
if x<>=z then statement end what is the cyclomatic complexity
what's the difference between abstract class and concreate class? what's the meaning of standard template library(STL)?
What is stl stand for?
What are stl algorithms?
how to use C++?
WHAT IS THE DIFFERENCE BETWEEN C++ AND VC++
Give two integer arrays A & B.A has n elements and B has ' n-1 ' elements . A has all the elements that are there in B. But B has one missing element. Write a function that takes arrays , A & B as imnput and finds the missing element in most optised manner .
Is there any error below, its a code to delete all entires from a map #include <map> #include iostream.h int main() { int i =0; map <int, char> TestMap; while(i<3) { TesMap.insert(TestMap::value_type(i,Test)); i++; } typedef map<int, char> :: iterator mapIter =TestMap.begin(); if(mapIter!=TestMap.end()) { TestMap.erase(mapItrer); ++mapIter; } return 0; }
Assume I have a linked list contains all of the alphabets from "A" to "Z?" I want to find the letter "Q" in the list, how does you perform the search to find the "Q?"