What is the difference between Return(0); and Return; ??

 
Does Return(0); and Return; do the same thing ?

Thank you

RJF
 
Forex Trader:
Does Return(0); and Return; do the same thing ?

Thank you

RJF
If you are into int function must put return 0 or -1 while only return if there is void function 
 
Milko Vivaldi #:
If you are into int function must put return 0 or -1 while only return if there is void function 

Why reply to a 17 year old post especially with an incorrect answer?

An int function can return any integer depending on what it is coded to do.

Reason: