About 308,000 results
Open links in new tab
  1. c++ - What is a char*? - Stack Overflow

    Jun 14, 2022 · A char* stores the starting memory location of a C-string. 1 For example, we can use it to refer to the same array s that we defined above. We do this by setting our char* to the …

  2. What is the difference between char array and char pointer in C?

    Sep 13, 2019 · As the initializer for an array of char, as in the declaration of char a [] , it specifies the initial values of the characters in that array (and, if necessary, its size). Anywhere else, it …

  3. Difference between char* and char** (in C) - Stack Overflow

    } int main() { char *s = malloc(5); // s points to an array of 5 chars modify(&s); // s now points to a new array of 10 chars free(s); } You can also use char ** to store an array of strings. However, …

  4. c++ - Difference between char* and char [] - Stack Overflow

    Sep 27, 2011 · char str[] = "Test"; Is an array of chars, initialized with the contents from "Test", while char *str = "Test"; is a pointer to the literal (const) string "Test". The main difference …

  5. What is char ** in C? - Stack Overflow

    Nov 13, 2012 · Technically, the char* is not an array, but a pointer to a char. Similarly, char** is a pointer to a char*. Making it a pointer to a pointer to a char. C and C++ both define arrays …

  6. c - char *array and char array [] - Stack Overflow

    char *array = "One good thing about music"; declares a pointer array and make it point to a (read-only) array of 27 characters, including the terminating null-character.

  7. Difference between char and char* in c - CS50 Stack Exchange

    Feb 24, 2015 · 50 The difference between char* the pointer and char[] the array is how you interact with them after you create them. If you are just printing the two examples, it will …

  8. What exactly does a char* mean in C++? - Stack Overflow

    Your understanding is correct; a char* does point to a single char. The trick is that arrays are laid out contiguously in memory, so given a pointer to the first element of an array, you can access …

  9. c - Difference between char* and const char*? - Stack Overflow

    Mar 23, 2012 · What's the difference between char* name which points to a constant string literal, and const char* name

  10. What is the difference between char, nchar, varchar, and nvarchar …

    Jun 27, 2013 · 8 The differences are: n [var]char stores unicode while [var]char just stores single-byte characters. [n]char requires a fixed number of characters of the exact length while …