About 8,620,000 results
Open links in new tab
  1. String (computer science) - Wikipedia

    Strings are typically made up of characters, and are often used to store human-readable data, such as words or sentences. In computer programming, a string is traditionally a sequence of characters, …

  2. String Data Type – Programming Fundamentals

    A string is generally considered a data type and is often implemented as an array data structure of bytes (or words) that stores a sequence of elements, typically characters, using some character encoding.

  3. What is String - Definition & Meaning - GeeksforGeeks

    Jul 23, 2025 · In Data Structures and Algorithms (DSA), a String can also be defined as a sequence of characters, stored in contiguous memory locations, terminated by a special character called the null …

  4. What is a Data Type? - W3Schools

    Data types are the types of data that can be stored in a variable. What is a Data Type? A data type is the type of data a variable has, like is it a text or is it a number? The data type we set a variable to …

  5. String Definition - What is a string in computer programming?

    Dec 18, 2024 · In computer science, a string is a fundamental data type used to represent text, as opposed to numeric data types like integers or floating-point numbers. It contains a sequence or …

  6. String Data Type - Visual Basic | Microsoft Learn

    Sep 15, 2021 · Use the String data type to hold multiple characters without the array management overhead of Char(), an array of Char elements. The default value of String is Nothing (a null reference).

  7. Basic Use of the string Data Type from the string Library

    Dec 16, 2025 · There is a data type that can store "strings" of characters (like the literal "Hello World!" and others we've seen). This data type is called, oddly enough, string. It is not a built-in type (like …

  8. Data Types in Programming - GeeksforGeeks

    Jul 23, 2025 · Numerous programming languages, for instance, utilize the data types string, integer, and floating point to represent text, whole numbers, and values with decimal points, respectively. An …

  9. What is a string in computer science? - California Learning Resource ...

    Jun 25, 2025 · In computer science, a string is an immutable sequence of characters, representing textual data. It’s a fundamental data type present in virtually every programming language and forms …

  10. Understanding String Data Types Across C, C++, Java, and Python

    Mar 28, 2024 · In the realm of programming, strings are a fundamental data type used to represent text. A string is essentially a sequence of characters, and though it is a basic concept, its...