Answers for "c program to print address of any function using pointer"

C
1

how to print the address of a pointer in c

int a = 42;

printf("%p\n", (void *) &a);
Posted by: Guest on July-03-2020

Code answers related to "c program to print address of any function using pointer"

Code answers related to "C"

Browse Popular Code Answers by Language