Record en turbo pascal
Fermé
matrix2006
Messages postés
1
Date d'inscription
dimanche 13 juillet 2008
Statut
Membre
Dernière intervention
13 juillet 2008
-
13 juil. 2008 à 16:47
KX Messages postés 16753 Date d'inscription samedi 31 mai 2008 Statut Modérateur Dernière intervention 25 novembre 2024 - 16 juil. 2008 à 15:25
KX Messages postés 16753 Date d'inscription samedi 31 mai 2008 Statut Modérateur Dernière intervention 25 novembre 2024 - 16 juil. 2008 à 15:25
A voir également:
- Record en turbo pascal
- Turbo pascal download - Télécharger - Édition & Programmation
- My pascal - Télécharger - Édition & Programmation
- Dev-pascal - Télécharger - Édition & Programmation
- Comment record son ecran pc - Guide
- Record du monde de personne dans un groupe whatsapp - Guide
1 réponse
hamza_bba
Messages postés
78
Date d'inscription
jeudi 18 octobre 2007
Statut
Membre
Dernière intervention
6 août 2009
1
13 juil. 2008 à 16:59
13 juil. 2008 à 16:59
voila exemple d'utilisation
type
personne record
Id:integer;
nom:string;
prenom:string;
end;
var
pers:personne;
begin
pers.id:=1;
pers.nom=hamza;
pers.prenom=ben;
end.
type
personne record
Id:integer;
nom:string;
prenom:string;
end;
var
pers:personne;
begin
pers.id:=1;
pers.nom=hamza;
pers.prenom=ben;
end.
16 juil. 2008 à 15:25