Why doesn't C support function overloading?
Answers were Sorted based on User's Feedback
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 |
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 |
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
write a program which will count occurance of a day between two dates.
How do I get an accurate error status return from system on ms-dos?
Can you add pointers together? Why would you?
Explain 'bit masking'?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Explain is it valid to address one element beyond the end of an array?
What is the difference between array and linked list in c?
What extern c means?
write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4