+ 1
Is there any difference between *p = &a And int *p ; p=&a;
2 Respuestas
+ 1
Pointer saves address of any variable. Second one is correct and first one is wrong.
+ 1
unless it is being initialised and mobile typing got in the way.
I.e.
int a = 80085;
int *p = &a;