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 |
What is void main () in c?
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
What is the difference between local variable and global variable in c?
i am using gsm modem ! I USE CMGL COMMAND TO DISPLAY THE LIST OF MESSAGES ! I WANT TO READ EACH MESSAGE ONE BY ONE AND GET EACH MESSAGE INDEX USING C PROGRAM ! THE RESPONSE OF THE MODULE AFTER AT+CMGL IS ---CMGL: 1,"REC READ","+85291234567",,"07/05/01,08:00:15+32",145,37 It is easy to list SMS text messages.---- I WANT THE PROGRAM TO GET THE NUMBER "37"{MESSAGE LENGTH} AS WELL AS "1"(MESSAGE INDEX NUMBER" PLEASE HELP
What is the purpose of main( ) in c language?
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
What is a example of a variable?
write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview
2 Answers Satyam, UNIS, Wipro,
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is omp_num_threads?