Difference between revisions of "Ord/fr"

From Lazarus wiki
Jump to navigationJump to search
(Created page with "{{Ord}} Function '''ord''' returns the ASCII value of the char '''c'''. Declaration Function ord (c : Char) : byte; See also: * Chr Category:Pascal")
 
 
Line 1: Line 1:
 
{{Ord}}
 
{{Ord}}
  
Function '''ord''' returns the [[ASCII]] value of the [[Char|char]] '''c'''.
+
=Description=
 +
La fonction '''ord''' retourne la valeur [[ASCII/fr|ASCII]] d'un [[Char/fr|caractère]] '''c'''.
  
Declaration
+
Déclaration
 
     Function ord (c : Char) : byte;  
 
     Function ord (c : Char) : byte;  
  
  
See also:
+
=Voir aussi=
* [[Chr]]
+
* [[Chr/fr|Chr]]
 
 
[[Category:Pascal]]
 

Latest revision as of 22:42, 28 October 2016

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

Description

La fonction ord retourne la valeur ASCII d'un caractère c.

Déclaration

   Function ord (c : Char) : byte; 


Voir aussi