Two Dimensional Array

Two-Dimensional Array Operations [Example with Integer Array]

  • Graphical Representation

  • Creation/Declaration

  • Initialization, Assignment

  • Access, Traverse [Individule Element and Using Loop]

  • Size, Address, Sequential & Consecutive Storage

  • Operations on Two-Dimensional Array

    • Summation, Subtraction, and Multiplication of two N×N Matrix

    • Find Transpose of a 2x2 matrix, or 3x3 matrix

    • Determinant of a 2x2 matrix, or 3x3 matrix

    • Inverse of a 2x2 matrix, or 3x3 matrix

    • Normal and Trace of Square Matrix

    • Test equality of two matrices

    • Determine the lower triangular matrix of a given matrix

    • Determine the upper triangular matrix of a given matrix

    • Test whether a given matrix is an identity matrix or not

  • Pass and Return a Two-Dimensional Array to and form a Function

  • Pointer for Two-Dimensional Array

  • Dynamic Memory Allocation of Two-Dimensional Array

Last updated