When declaring a string in C what is the difference between

char* mystring;

and

char *mystring;
link|improve this question

78% accept rate
There is no difference – juergen d Feb 22 at 11:15
The difference is where space is. You can also use char*mystring; – Michael Krelin - hacker Feb 22 at 11:17
I think this is just code style difference – looyao Feb 22 at 11:17
AFAIK char *mystring is more preferred...for obvious reasons... – webgenius Feb 22 at 11:27
feedback

2 Answers

up vote 8 down vote accepted

There is no difference. The second option is commonly preferred because it makes it easier to avoid this pitfall:

char* str1, str2;

Here, str1 is a char* but str2 is a plain char. The other way of writing the declaration makes it easier to see that you have to put an extra asterisk in there:

char *str1, *str2;

Now both variables are of type char*.

link|improve this answer
its preferable to split up such declarations on multiple lines due to initialization. – Anders K Feb 22 at 11:18
feedback

No difference here. But those two below are different:

char *p1, *p2;

and

char* p1, p2;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.