Definition: A procedure is a block of code that performs a single task. Its a building block of a computer program but is a somewhat old fashioned phrase as nowadays computer languages use functions not procedures.
The language Pascal had both procedures and functions - the only difference is that a procedure does not return a result. In C, C++ and C#, this is called a void function.
Glossary:
A B C D E F G H I J K L M N O P Q R S T U V W X Y ZAlso Known As: function, module
Examples:
There was a major bug in the initialization procedure.

