what is difference between overriding and overloading?

Answer Posted / jothi16

overridding overloading
1.same function and same 1.same functin
argument diffrernt argument

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

783


what are the facialities provided by you after the selection of the student.

1659


What is extern keyword in c?

645


What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?

608


What is the difference between Printf(..) and sprint(...) ?

790






What is pointer in c?

742


Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.

720


How can you increase the allowable number of simultaneously open files?

597


What are local static variables? How can you use them?

647


How many bytes is a struct in c?

725


any "C" function by default returns an a) int value b) float value c) char value d) a & b

667


What’s a signal? Explain what do I use signals for?

607


In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.

1381


Explain main function in c?

629


Can you please explain the difference between syntax vs logical error?

697