Pointer variables are confusing to me. Consider the code below:
int main() {double* grade; double *grade;}
double* fn() {}
What is the difference between double* grade
and double *grade
?
What is the difference between double
, double*
in int main()
, and double*
of fn()
?