Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
'A definition provides a unique description of an entity (for example, type, instance, function) within a program' [1].
There are two types of definitions:
A variable definition is a variable declaration with specifying an initial value.
int main() |
Postpone variable definitions as long as possible [2].
A function definition is a function declaration with specifying the function body.
//A function declaration |
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.