About 16,700,000 results
Open links in new tab
  1. 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 …

  2. How do I create an array of strings in C? - Stack Overflow

    Jul 7, 2009 · There are several ways to create an array of strings in C. If all the strings are going to be the same length (or at least have the same maximum length), you simply declare a 2-d …

  3. Array of Strings in C - Online Tutorials Library

    To declare an array of strings, you need to declare a two-dimensional array of character types, where the first subscript is the total number of strings and the second subscript is the …

  4. How To Make An Array Of Strings In C - Mixed Kreations

    In this article, we’ll walk you through two versions of a recipe for making an array of strings in C, as well as explore some interesting trends in the world of string manipulation in C programming.

  5. Array of Strings in C - TheLinuxCode

    May 20, 2025 · In this guide, we‘ll explore everything you need to know about creating, manipulating, and using arrays of strings in C. You‘ll learn the different approaches, memory …

  6. C Array of Strings: A Complete Tutorial with Examples

    Learn how to work with arrays of strings in C programming. This comprehensive tutorial covers declaring, initializing, accessing, and manipulating arrays of strings with clear examples and …

  7. Array of Strings in C Language (With Examples)

    Nov 10, 2025 · Learn how to create and use an array of strings in C programming. Explore different methods and operations with examples, output, and explanations. Read now!

  8. Array of Strings in C - Delft Stack

    Oct 12, 2023 · Thus, one can declare a two-dimensional char array with brackets notation and utilize it as the array of strings. The second dimension of the array will limit the maximum …

  9. C: How to correctly declare an array of strings? - Stack Overflow

    Jul 29, 2009 · All the memory for the strings is statically allocated, but the size of each string in the array is fixed, and you have to size for your longest possible string, which may result in …

  10. How to Create a Dynamic Array of Strings in C? - GeeksforGeeks

    Jul 23, 2025 · In this article, we will learn how to create a dynamic array of strings in C. To create a dynamic array of strings in C, we can use the concept of double pointer and dynamic …