Sunday, January 10, 2010

Which one of the following will declare a pointer to an integer at address 0x200 in memory?

a) int *x;
*x = 0x200;
b) int *x = &0x200;
c) int *x = *0x200;
d) int *x = 0x200;
e) int *x( &0x200 );


No comments: