Syntaxe : alg : Déclaration d'un tableau
Variable nomTab : TypeElement [taille] # nombre d'éléments
Variable nomTab : TypeElement [borneMin..borneMax] # bornes explicites
Syntaxe : C/C++ : Déclaration d'un tableau
TypeElement nomTab[taille];
Syntaxe : Java : Déclaration/Création d'un tableau
TypeElement[] nomTab; // Déclaration
nomTab = new TypeElement[taille]; // Création
Syntaxe : Python : Déclaration/Création d'un tableau
nomTab = [valInitTypeElement for x in range(taille)]