#include
int main(void) { int i=15; int *p; p=&i; printf(“\n Address of Variable i = %u”,p); return 0; }
Address of Variable i = 2705306036