Possible Duplicate:
Is there a difference between foo(void) and foo() in C++ or C
void foo1(void){...}void foo2(){...}
Are foo1 and foo2 equivalent? If they are, which one should be preferred?
|
|
Are
|
||||||||||||
|
closed as exact duplicate by Simon P Stevens, Aaron Digulla, qrdl, pmg, Goz Nov 6 at 11:30 |
|
|
Yes, the signatures of foo1 and foo2 är equivalent. The preference of usage is subjective. Personally I'd go for foo2 while others may prefer foo1. |
||||||
|