Saved Bookmarks
| 1. |
Which function (s) out of the following can be considered as overloaded function(s) in the same program? Also, write the reason for not considering the other(s) as overloaded function(s).void Execute (char A, int B); //Function1void Execute (int A, char B); //Function2void Execute (int P = 10); //Function3void Execute(); //Function4 int Execute (int A); //Function5void Execute (int &K); //Function6 |
|
Answer» Function1, Function2 and Function 5 can be considered as overloaded function in the same program. |
|