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 301 views
1 answer 202 views
1 answer 119 views
1 answer 136 views
1 answer 153 views
...