I Just want to know what is the difference between the following way of assigning a pointer. i was watching a C tutorial online and couldn't understand why he used the second pointer like this char * buffer;
. Instead of char *buffer
Like the way I use the pointer in all my C learning. is it style? e.g
FILE *pFile;
struct product *next;
does it matter where you put the asterix (pointer) or what is the meaning behind it?