Why are pointers to arrays of chars (ie. strings) written as below:
char *path
Instead of:
char *path[]
or something like that?
How could I create a pointer to a char and not a string?
|
It may be the case that In c, strings often use |
|||
|
|
|
A 'string' in C is simply a pointer to a This is similar to the concept that a Not having a first class, full-fledged 'string' data type is something that distinguishes C from most other high level languages. I'll let you decide for yourself whether it distinguishes C in a good or a bad way. |
||||
|
|
|
A pointer to an array of char would be |
|||
|
|
char *path[]is the same aschar **pathis in a function parameter list. – Cubbi May 17 '11 at 21:45char *path[]is an array of pointers. In many contextspathwill evaluate to achar**, but it is still in fact an array, not a pointer. For example, you couldn't saypath = &some_char_pointer;like you could ifpathwere declared as achar**. – Michael Burr May 17 '11 at 21:48