problem 54 #include <stdio.h> int main(void) { int i = 15; int * p; p = & i; printf("\nAddress of Variable i = %u", p); return 0; } Copy