#include int main(int argc, char *argv[]) { int i = 1234; int *p; p = (int *) 4290768376; // Give p the value 4290768376 printf("Value stored at memory location 4290768376 = %d\n", *p); p = (int *) 4290768380; // Give p the value 4290768380 printf("Value stored at memory location 4290768380 = %u\n", *p); }