The first is taking the value contained in i, treating it as a pointer, and retrieving whatever int value is at that address (if possible).
The second takes the address of i, casts it to pointer to int, and retrieves the value at that address. If i is an int, it's equivalent to p=i;. If it's not, it's going to take the first CHAR_BIT *sizeof(int) bits starting at the address of i, and (attempt to) treat them as an int, and assign whatever value that creates to p.
Edit: and yes, as @R. Martinho Fernandes pointed out, if i has an overloaded operator &, it may do something rather different from any of the above (i.e., instead of the address of i it'll start with whatever its operator & returns).
ideclared? If it's anint, then&iis already of typeint*, and the cast in the second line is superfluous. – Keith Thompson Jul 5 '12 at 18:15iis. As stated, it has only one answer: the one Martinho gave you in the comment above. – AndreyT Jul 5 '12 at 18:25