Say you have this..
int fry = 50;
Now wen making a pointer and referencing the value, the asterisk can be placed two different ways:
int* d1 = &fry;
and...
int *d1 = &fry;
I was wondering what the difference is and what situation it would be best to use each? Thanks!