The difference between void setup (void) and void setup()

What's the difference between void setup (void) and void setup()

AND between void loop (void) and void loop()

when the () should be kept blank and when should put "void" into that??? Thanks.

There is no difference. The void can be but between braces and simply states the fact that the function has no parameters. You can use either one.

goodinventor:
There is no difference. The void can be but between braces and simply states the fact that the function has no parameters. You can use either one.

Thank you very much