InterviewSolution
 Saved Bookmarks
    				| 1. | 
                                    What are the rules for function overloading? | 
                            
| 
                                   
Answer»  Rules for function overloading: 1. The overloaded function must differ in the number of its arguments or data types. 2. The return type of overloaded functions are not considered for overloading same data type. 3. The default arguments of overloaded functions are not considered as part of the parameter list in function overloading.  | 
                            |