About 49,000 results
Open links in new tab
  1. Array Data Structure - GeeksforGeeks

    Jan 22, 2026 · An array is a fundamental and linear data structure that stores items at contiguous locations. Note that in case of C/C++ and Java-Primitive-Arrays, actual elements are stored at …

  2. Array - JavaScript | MDN - MDN Web Docs

    Sep 28, 2025 · The Array object, as with arrays in other programming languages, enables storing a collection of multiple items under a single variable name, and has members for performing common …

  3. JavaScript Arrays - W3Schools

    However, what if you want to loop through the cars and find a specific one? And what if you had not 3 cars, but 300? The solution is an array! An array can hold many values under a single name, and …

  4. array — Efficient arrays of numeric values — Python 3.14.2 …

    3 days ago · This module defines an object type which can compactly represent an array of basic values: characters, integers, floating-point numbers. Arrays are mutable sequence types and behave …

  5. Array (data structure) - Wikipedia

    In computer science, an array is a data structure consisting of a collection of elements (values or variables), of same memory size, each identified by at least one array index or key, a collection of …

  6. What is an Array? Understanding the Basics and Defining Array Data ...

    An array is a data structure that stores a fixed-size collection of elements such as integers or strings, sequentially in memory. Each element in the array is accessed using an index, starting from zero.

  7. Array declaration - cppreference.com

    Apr 4, 2024 · There are no arrays of references or arrays of functions. Applying cv-qualifiers to an array type (through typedef or template type manipulation) applies the qualifiers to the element type, but …

  8. Java Array (With Examples) - Programiz

    In this tutorial, we will learn to work with Java arrays. We will learn to declare, initialize, and access array elements with the help of examples. An array is a collection of similar data types.

  9. Flexible Array Members in C: A Practical 2026 Guide – TheLinuxCode

    5 days ago · I first ran into flexible array members while building a binary message parser for a telemetry service. Each message carried a fixed header and a variable-length payload. I could have stored a …

  10. Array Data Structure - Online Tutorials Library

    An array is a type of linear data structure that is defined as a collection of elements with same or different data types. They exist in both single dimension and multiple dimensions.