When did c++ add stl?
No Answer is Posted For this Question
Be the First to Post Answer
What is Template Specialization?
how can u do connectivity in c++ language? plz send me connectivity code in c++ ?
what's the difference between function overloading and function overiding?
how to making game in c++ ?
if x<>=z then statement end what is the cyclomatic complexity
differentiate between private, public and protected data members of the class using example.
Give the output of the following program main() {int ret; ret=fork();ret=fork();ret=fork();ret=fork(); if(!ret) printf("sun"); else printf("solaris");
What does stl mean in slang?
what's the difference between abstract class and concreate class? what's the meaning of standard template library(STL)?
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; }
write a c++ program to create an object of a class called employee containing the employee code name designation basic salarry HRA Da gross salary as data 10 such objects "members process "
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