About 149,000 results
Open links in new tab
  1. Pascal Multi-Dimensional Arrays - Online Tutorials Library

    Pascal Multi-Dimensional Arrays - Explore how to effectively utilize multi-dimensional arrays in Pascal programming with clear examples and explanations.

  2. Creating 2-dimensional array (nxn) *Pascal - Stack Overflow

    Oct 7, 2013 · You don't need arrays for this, just two nested FOR loops. Here is an example which writes a grid of 1s - see if you can modify this to give the output that you need (hint: you need …

  3. Arrays - Free Pascal

    Free Pascal supports arrays as in Turbo Pascal. Multi-dimensional arrays and (bit)packed arrays are also supported, as well as the dynamic arrays of Delphi: When the range of the array is …

  4. Basic Pascal Tutorial/Chapter 5/Multidimensional arrays

    Aug 20, 2022 · You can have arrays in multiple dimensions: type datatype = array [ enum_type1 , enum_type2 ] of datatype ; The comma separates the dimensions, and referring to the array …

  5. Pascal - Multi-dimensional Arrays

    Apr 14, 2013 · Pascal programming language allows multidimensional arrays. Here is the general form of a multidimensional array declaration: type array-identifier = array [index-type1, index …

  6. Arrays in Pascal - Learn X By Example

    Arrays in Pascal are numbered sequences of elements of a specific length. They are commonly used in Pascal programming. SysUtils; a: array[0..4] of Integer; b: array[0..4] of Integer; twoD: …

  7. Multi-dimensional arrays - Build Complete Pascal Programs: …

    In Pascal, a multi-dimensional array is declared by specifying multiple index ranges. The most common form is the two-dimensional array, which can be visualized as a table with rows and …

  8. Pascal Arrays - Online Tutorials Library

    Pascal programming language provides a data structure called the array, which can store a fixed-size sequential collection of elements of the same type. An array is used to store a collection …

  9. In this section of notes you will learn about how and when to use multi-dimensional arrays. • by the data – the number of categories of information determines the number of dimensions to …

  10. Example: Multidimensional dynamic array - Free Pascal wiki

    Jun 23, 2019 · program project1; type TArr2D = array of array of Integer; procedure FillArr2D(Arr: TArr2D); var i, j: Integer; begin for i:=Low(Arr) to High(Arr) do for j:=Low(Arr[i]) to High(Arr[i]) …

  11. Some results have been removed
Refresh