Answer Posted / hrpynux@gmail.com
Function Overloading allows us to have multiple functions with the same name but with different function signatures in our code. These functions have the same name but they work on different types of arguments and return different types of data. ... Therefore, C does not support function overloading.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is unary operator?
What are c preprocessors?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Why do we need functions in c?
What is indirection?
Can an array be an Ivalue?
What does nil mean in c?
What is #define?
What is sorting in c plus plus?
What is c system32 taskhostw exe?
Write a program to find the biggest number of three numbers in c?
What is the advantage of an array over individual variables?
What is #define in c?
Why void is used in c?
What is an endless loop?