Difference between revisions of "Dec"

From Lazarus wiki
Jump to navigationJump to search
m
Line 1: Line 1:
{{Dec}}<br>
+
{{Dec}}
<br>
+
 
 
= Dec =
 
= Dec =
 
  
 
Dec (decrement) [[Procedure|procedure]] in Pascal programming let you easily subtract 1 (or some other value) from, a [[Variable|variable]].  
 
Dec (decrement) [[Procedure|procedure]] in Pascal programming let you easily subtract 1 (or some other value) from, a [[Variable|variable]].  

Revision as of 22:34, 23 August 2015

Deutsch (de) English (en) suomi (fi) français (fr) русский (ru)

Dec

Dec (decrement) procedure in Pascal programming let you easily subtract 1 (or some other value) from, a variable.

For example, using (decrement) procedure, you can reduce 1 to a variable named a like this:

 dec( a );

If you want to reduce by two (or some other value):

 dec( a, 2 );

Dec procedure included System Unit.


See also

  • Link to RTL documentation: dec
  • Inc - Increase value of integer variable.
  • Link to RTL documentation: pred - Return previous element for an ordinal type.
  • For control_variable := start_point Downto end_point Do statement.