How does an stl file work?
No Answer is Posted For this Question
Be the First to Post Answer
How stl is different from the c++ standard library?
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 .
what's the difference between function overloading and function overiding?
Who created stl?
What two types of containers does the stl provide?
Is string part of stl?
wap in c++ which accept a integer array and its size as argument and replaces element having even values with its half and element having odd values with twice its value
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; }
why we are using the fork command?.. how it works?
What is a stl vector?
Explain References in C++
5. Write c++ function that would intake a string and return the number of occurrences of a given character in that sring Ex:- if the word is “Colombo” and count the occurrences of the letter “o” the function would return 3