is there difference between char* pt and char *pt in c++?
type* pt or type *pt?
as titled, Thanks in advance.
is there difference between char* pt and char *pt in c++?
type* pt or type *pt?
as titled, Thanks in advance.
No but be careful of something like char* a, b;
only a is a pointer in this statement.