What is 2*2?
Answers were Sorted based on User's Feedback
What is the Difference between CArray and CList?
1 Answers ProdEx Technologies, Siemens,
What are the various types of stl containers?
What do you mean by stl?
what is an algorithm in terms of STL?
Can we use stl in coding interviews?
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; }
how to swap two numbers in a linked list without exchanging the data but only the links?
#define CUBE(x) (x*x*x) main() { int a,b=3; a=cube(b++); printf("%d %d",a,b); } What should be the value of a and b? My calc a=4 but syst a=6 how pls tell me if you know it?
Define stl.
write a program to convert a decimal number in to its equivalent binary number?
Explain when u will use Observer pattern and how u will implement in c++ .
write a program that input four digit number and find how many 7 that number contains