Method Overloading exist in c ?

Answers were Sorted based on User's Feedback



Method Overloading exist in c ?..

Answer / sunitha.gottipati

Method overloading is not supported by c. it is supported
in java

Is This Answer Correct ?    21 Yes 2 No

Method Overloading exist in c ?..

Answer / thavamoorthi

c does not support the method overloading it supported only by object oriented

Is This Answer Correct ?    20 Yes 2 No

Method Overloading exist in c ?..

Answer / nagulmmera

Not exit in c,method overloading supported in oop

Is This Answer Correct ?    11 Yes 0 No

Post New Answer

More C Interview Questions

In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT

1 Answers   IBM,


What is a stream in c programming?

0 Answers  


#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif

4 Answers   IBM, Vector,


What are the keywords in c?

0 Answers  


Which command is more efficient? *(ptr+1) or ptr[1]

3 Answers  


main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }

1 Answers  


Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates

3 Answers  


What is void main ()?

0 Answers  


HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????

0 Answers  


diff .between strcture and union

2 Answers  


Program to find largest of three numbers without using comparsion operator?

3 Answers  


WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?

4 Answers  


Categories