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
Explain what is a pragma?
What is a const pointer?
Where does the name "C" come from, anyway?
Explain what are binary trees?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Write a code to generate a series where the next element is the sum of last k terms.
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
How can I manipulate individual bits?
What are the 5 types of organizational structures?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is getch () for?
in linking some of os executables are linking name some of them
How does struct work in c?
What does struct node * mean?
write a c program to calculate sum of digits till it reduces to a single digit using recursion