Method Overloading exist in c ?
Answers were Sorted based on User's Feedback
Answer / sunitha.gottipati
Method overloading is not supported by c. it is supported
in java
Is This Answer Correct ? | 21 Yes | 2 No |
Answer / thavamoorthi
c does not support the method overloading it supported only by object oriented
Is This Answer Correct ? | 20 Yes | 2 No |
Answer / nagulmmera
Not exit in c,method overloading supported in oop
Is This Answer Correct ? | 11 Yes | 0 No |
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
What is a stream in c programming?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif
What are the keywords in c?
Which command is more efficient? *(ptr+1) or ptr[1]
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
What is void main ()?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
diff .between strcture and union
Program to find largest of three numbers without using comparsion operator?
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?