Multiple choice Which of the following will declare a pointer to an integer at address 0x200 in memory? int *x; *x = 0x200; int *x = &0x200; int *x = *0x200; int *x = 0x200; int *x( &0x200 ); Reveal answer Fill a bubble to check yourself A Correct answer