int a = 10;
int *p = &a;
I was wondering if initializing a pointer to some address allocates memory to that pointer or not?
No. The a and p variables need to be allocated on the stack, or if they're outside a function they'd be allocated memory as global variables. The compiler does this for you automatically, even if you just have...
int a;
int* p;
...without the = <expression> to specify their initial value. What happens is basically that at some address in memory, a number of bytes (likely 4 or 8) will be reserved to store the value you're identifying as a, and at another address further memory (likely 4 or 8 bytes) will be reserved to store the value you call p.
The initialisation of p with &a simply copies the numeric address of a into the memory for p... it does not cause the allocation of either[1], nor move their memory.
It may help to visual it like this, using some made-up addresses...
MEMORY-ADDRESS CONTENTS NAME
1000 10 a
2000 1000 p
Here, p "points" to a because the contents of p's memory hold a's address. But the addresses of a and p are chosen by the compiler irrespective of any initialisation or other changes to their value.
I think what's confusing you here is that we do often allocate memory when using pointers... something like:
p = new int;
What this does is find some memory for an int dynamically at runtime, loading the address of that memory into p so we can start referring to it as p and using it to store int values. When we're finished with it we can delete p to return the memory to the system, such that it may be recycled and used when another new is done. This type of allocation needs to be explicitly performed in your code (or in the code of some library function you call).
[1] - an optimiser may choose not to assign actual memory for a and/or p - using a CPU register instead, but that won't affect the functional behaviour of your program (it may affect the preformance).
p. – Let_Me_Be Dec 4 '12 at 11:02a, which now has the value20. – Peter Wood Dec 4 '12 at 11:08