About 2,750 results
Open links in new tab
  1. One Dimensional Arrays in C - GeeksforGeeks

    Jul 23, 2025 · In this article, we will learn all about one-dimensional (1D) arrays in C, and see how to use them in our C program. A one-dimensional array can be viewed as a linear sequence of elements. …

  2. One dimensional Array in Data Structures with Example

    Sep 23, 2025 · A one-dimensional array is a linear data structure that stores elements of the same data type in contiguous memory locations. It provides a systematic way of organizing and accessing a …

  3. One Dimensional Array in Java - GeeksforGeeks

    Jul 23, 2025 · One of the most commonly used types of arrays is the one-dimensional array. It represents a simple list of elements where each item can be accessed using a single index.

  4. One-Dimensional Array in C Language (With Examples)

    Mar 13, 2026 · Learn in this tutorial about One-Dimensional Arrays in C with examples. Understand their properties, syntax, declaration, access methods, and uses in C programs.

  5. Array creation — NumPy v2.4 Manual

    numpy.diag can define either a square 2D array with given values along the diagonal or if given a 2D array returns a 1D array that is only the diagonal elements.

  6. Understanding Arrays in Data Structures: 1D vs 2D Arrays Explained

    Jul 31, 2025 · In this blog, we’ll explore the core concepts behind 1D and 2D arrays, including memory layout, use cases, and time/space complexity.

  7. Array (data structure) - Wikipedia

    A one-dimensional array (or single dimension array) is a type of linear array. Accessing its elements involves a single subscript which can either represent a row or column index.

  8. 1-D array - Implementation (data types and structures) - Higher ... - BBC

    1-D array 1-D Arrays allow programmers to store data in a list (provided that the data is of the same data type). For example, to store a list of Scottish cities you could create a...

  9. 1D Array vs. 2D Array - What's the Difference? | This vs. That

    A 1D array is a linear data structure that stores elements in a single row or column, while a 2D array is a multidimensional data structure that stores elements in rows and columns. 1D arrays are simpler and …

  10. 1-D Tutorials & Notes | Data Structures | HackerEarth

    An array is a sequential collection of elements of same data type and stores data elements in a continuous memory location. The elements of an array are accessed by using an index.