C function overloading

Hi,

is there a way to overload a function in C.
Like this:

void func();

void func(int i);


Thanks!!

Molson
No. C does not allow function overloading.

You can do that in C++ though.
Topic archived. No new replies allowed.