Does c supports function overloading?

Showing Answers 1 - 3 of 3 Answers

angel421

  • Sep 9th, 2011
 

No. C does not support function overloading, C++ does.

Overloading simply involves having a method with the same name within the class.

Example for Over loading

Class A
{
class a()

{

}
class a(int a)
{
}
}

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions