About 935,000 results
Open links in new tab
  1. String Arrays in Java - GeeksforGeeks

    Oct 2, 2025 · A String Array in Java is an array that stores string values. In this article, we will learn the concepts of String Arrays in Java including declaration, initialization, iteration, …

  2. Java Arrays - W3Schools

    Arrays are used to store multiple values in a single variable, instead of declaring separate variables for each value. To declare an array, define the variable type with square brackets [ ] : …

  3. Array - JavaScript | MDN - MDN Web Docs

    Sep 28, 2025 · This example shows three ways to create new array: first using array literal notation, then using the Array() constructor, and finally using String.prototype.split() to build …

  4. Explore - LeetCode

    Array is one of the fundamental blocks in data structure. Since a string is just formed by an array of characters, they are both similar. Most interview questions fall into this category. In this …

  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 …

  6. String Arrays in Java - Tpoint Tech

    6 days ago · What is a String Array? A String Array is an Array of a fixed number of String values. A String is a sequence of characters. Generally, a string is an immutable object, which means …

  7. Arrays and Strings - MIT

    Arrays can contain any legal Java data type including reference types such as objects or other arrays. For example, the following declares an array that can contain ten String objects. The …

  8. Difference between Array and String

    Arrays and strings work very differently in Java as they do in C/C++. This article presents an unbiased comparison between Arrays and Strings. What is an Array? Many applications …

  9. Array of Strings in C - GeeksforGeeks

    Jul 23, 2025 · In C, an array of strings is a 2D array where each row contains a sequence of characters terminated by a '\0' NULL character (strings). It is used to store multiple strings in a …

  10. JavaScript Arrays - W3Schools

    Converting an Array to a String The JavaScript method toString() converts an array to a string of (comma separated) array values.