What is the difference between char s[] and char *s in C

1 Answer

0 votes
// The char s[] is an array, whereas *s is a pointer

char *s = "c dev";

// Making s a pointer to "c dev" in read-only memory - any writing on this memory is illegal


char s[] = "Hello world";

// Copy the string to newly allocated memory on the stack - any writing on this memory is legal

 



answered May 24, 2024 by avibootz

Related questions

1 answer 217 views
1 answer 94 views
1 answer 54 views
1 answer 66 views
1 answer 47 views
...