Fallen Angel ha scritto:
> From a discussion at Hacker News (
http://news.ycombinator.com/item?id=323863
> ), I came to this page where there is a couple of C++ puzzles are
> listed. Can anyone put thier views about it :
>
> 1. With these variable declarations: int i, j[10], *k;
> Which of the following are legal?
>
> a. i = *(&(j[2]) + 1);
> b. k = &(j[1]);
> c. i = &(j[2]) + 1;
>
> http://www.meebo.com/jobs/openings/server/
>
> Thanks
the a. looks "type" correct.