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 |
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
Which one would you prefer - a macro or a function?
What are the key features in c programming language?
What is the difference between %d and %*d in C
i want to know the procedure of qualcomm for getting a job through offcampus
What are the types of functions in c?
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
Is double link list a linear data structure? If Yes, Why?If No, Why?
What are valid operations on pointers?
Is it possible to execute code even after the program exits the main() function?