When declaring a string in C what is the difference between
char* mystring;
and
char *mystring;
|
feedback
|
|
There is no difference. The second option is commonly preferred because it makes it easier to avoid this pitfall:
Here,
Now both variables are of type | |||
feedback
|
|
No difference here. But those two below are different:
and
| |||
|
feedback
|
char*mystring;– Michael Krelin - hacker Feb 22 at 11:17