#include void foo(long int* numbers) { // Address of bar: 0x4005c numbers[4] = 0x0000555555554720; printf("Foo was called\n"); } void bar() { printf("Bar was called\n"); } int main() { long int numbers[4]; foo(numbers); // bar(); printf("Address of Foo: %x\n", foo); printf("Address of Bar: %x\n", bar); return 0; }