0
* symbol has to be used before the var name but In Pointers topic it is written that we Can use it anywhere. Please explain.
2 Réponses
0
it can be placed next to the data type, or the variable name, or in the middle. Like this:
int* p;
int * p;
int *p;
0
Okk thnxx a lot