I am doing my BS.c MATHS CAN I ABLE TO JOIN IN NIIT?
Answers were Sorted based on User's Feedback
Difference between Structure and Class in C++?
I am doing my BS.c MATHS CAN I ABLE TO JOIN IN NIIT?
How connect plc and pc through software
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 "
Explain References in C++
what is template and type convertion
What is stl in oop?
Define 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
i wanted to know about questions about c,c++ , which is required for placements.... im a fresher
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.
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; }