method overloading means what?
Answers were Sorted based on User's Feedback
Answer / kalyan chukka
Method overloading is to overload methods using same class
name by writing different parameters.This is called Method
Overloading.
Kalyan Chukka
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / giri_tarare
Overloading means same method name with different parameter
but same return type.
| Is This Answer Correct ? | 4 Yes | 2 No |
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 "
what is a template?
2 Answers Amazon, BITS, IBS, Wipro,
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; }
Explain stl.
What is Object Oriental Progam
What do stl stand for?
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
write a program that input four digit no and finds it is palindrome or not
What is C++ could you enplane me please?
Can we use stl in coding interviews?
Give the output of the following program main() {char *p='a'; int *i=100/*p; } what will be the value of *i= 1
Is string part of stl?