Last Updated : 11 Jul, 2025
We all know that code of every function resides in memory and so every function has an address like all others variables in the program. We can get the address of a function by just writing the function's name without parentheses. Please refer
function pointer in Cfor details. Address of function main() is 004113C0 Address of function funct() is 00411104 In C/C++, name of a function can be used to find address of function.
C
// C program to addresses of a functions
// using its name
#include<stdio.h>
void funct()
{
printf("GeeksforGeeks");
}
int main(void)
{
printf("address of function main() is :%p\n", main);
printf("address of function funct() is : %p\n", funct);
return 0;
}
Output:
address of function main() is :0x40053c address of function funct() is : 0x400526
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4