what is overloading
Answers were Sorted based on User's Feedback
Answer / rajveer
c++ provide 2types of overloading.
1. Function overloading:- When we create more then 1
function as same name(like Sum)then it's overloading.
this types overloading in perameters are deffrent becouse
compiler is not know which function called. so sum(),sum
(int,int),sum(int float)etc.
2. operatore overloading:- in c++ operatore(+,-,/ etc.)
worked only builtin datatype. but we can use operatore in
user defined data type by operatore overloading.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / laxmi reddy
Function overloading:- When we create more then 1
function as same name(like Sum)then it's overloading.
this types overloading in perameters are deffrent becouse
compiler is not know which function called. so sum(),sum
(int,int),sum(int float)etc.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / gaurav pathak
the function overloading is ablity to make more then one
function of same name.compiler identifies which function is
called by making the comparision of function arguments.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is encapsulation in ict?
Why and when is a virtual destructor needed?
#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort
What is methods in oop?
What is virtual function?where and when is it used?
Prepare me a program for the animation of train
What is the difference between declaration and definition?
1.what are two type of classe members called? 2.what is data hiding and data encapsulation? 3.how do you make a class member visible aouside its class? 4.what is the default visibility of a class data member? 5.what are the advantages of oop over the structured programing?
what is new operator in c++
What is a class?
32 Answers Infosys, TCS, Thylak,
What is oops in simple words?
What is difference between abstraction and encapsulation?