int *j = &i; // j will now store the address of i printf("The value of i is %d\n", i); printf("The value of i is %d\n", *j); printf("The address of i is %u\n", &i ...
Some results have been hidden because they may be inaccessible to you
Show inaccessible results