+ 4
What is difference between function and procedure?
4 Answers
+ 3
A procedure doesn't return anything (void in c++, Java...)
A function return something.
+ 2
Molnar Daniel function or method is the same.
+ 1
It is possible for a function to also return nothing or void. I think the definition is somewhat language dependent.