Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#include
int main() { int myAge = 43; // Variable declaration int* ptr = &myAge; // Pointer declaration // Reference: Output the memory address of myAge with the pointer (0x7ffe5367e044) printf("%p\n", ptr); // Dereference: Output the value of myAge with the pointer (43) printf("%d\n", *ptr); return 0; }
0x7ffe5367e044
43