Unverified Commit c57dfd2e authored by Lokesh Singh's avatar Lokesh Singh Committed by GitHub

Update readme.md

parent cd814fdc
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
Multidimensional arrays are arrays of arrays with each element of the array holding the reference of other arrays. Multidimensional arrays are arrays of arrays with each element of the array holding the reference of other arrays.
These are also known as <a href = "https://www.geeksforgeeks.org/jagged-array-in-java/">Jagged Arrays</a>. A multidimensional array is created by appending one set of square brackets ([]) per dimension. These are also known as <a href = "https://www.geeksforgeeks.org/jagged-array-in-java/">Jagged Arrays</a>. A multidimensional array is created by appending one set of square brackets ([]) per dimension.
** one dimensional array of one dimensional arrays is called two-dimensional array.
Examples: Examples:
```java ```java
data_type[][] array_name = { data_type[][] array_name = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment