in reply to Difference between subroutine and functions
Some programming languages, like Pascal and FORTRAN, distinguish between functions, which return values, and subroutines or procedures, which do not. Other languages, like C and LISP, do not make this distinction, and treat those terms as synonymous. The name method is commonly used in connection with object-oriented programming, specifically for subroutines that are part of objects.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Difference between subroutine and functions
by Anonymous Monk on Mar 15, 2010 at 05:39 UTC |