What is the default encoding for C strings?

Viewed 24380

I know that C strings are char[] with a '\0' in the last element. But how are the chars encoded?

Update: I found this cool link which talks about many other programming languages and their encoding conventions: Link

5 Answers
Related