#include <stdio.h>

void demo()
{
    printf("demo");
}

int main()
{
    printf("%p", demo);
    return 0;
}