Difference between revisions of "Variable"

From Free Pascal wiki
Jump to navigationJump to search
m
(clarifications and categorization)
Line 1: Line 1:
a variable is an allocation of memory wich contains a date ([[Integer|integer]] [[Char|char]] etc..) you can define [[Global variables|global variables]] or [[Local variables|local variables]]
+
A '''variable''' is a symbol and an allocation of memory wich contains content ([[Integer|integer]] [[Char|char]] etc..) you can define. They may be in the scope of the whole program [[Global variables|global variables]] or a procedure, function or method only [[Local variables|local variables]].
 +
 
 +
[[Category:Pascal]]

Revision as of 21:38, 7 March 2015

A variable is a symbol and an allocation of memory wich contains content (integer char etc..) you can define. They may be in the scope of the whole program global variables or a procedure, function or method only local variables.