create pointer

int myAge = 43; // an int variable
printf("%d", myAge); // output the value of myAge(43)
// Output the memory address of myAge (0x7ffe5367e044)
printf("%p", &myAge);
Comments