what is c++
Answers were Sorted based on User's Feedback
Answer / bhaskar.mantrala
c + oo -------> that means c with object oriented language
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / sudheer
c++ is object oriented programming language.. the main
function value should return..
| Is This Answer Correct ? | 1 Yes | 2 No |
WHAT IS THE DIFFERENCE BETWEEN C++ AND VC++
What is the STL?
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 .
How the STL's are implemented, What the difference between templates and STL?
What two types of containers does the stl provide?
how to swap two numbers in a linked list without exchanging the data but only the links?
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
Define 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; }
What is stl language?
How to write a function that goes through an array of characters and eliminates any elements that are not letters (Legal letters can be either in an uppercase or a lowercase format.) The function removeNonLetters should return the new effective size of the array as the result.
What is a standard template library (stl)? What are the various types of stl containers?