1#include <stdio.h>2 3int foo () { return 10; }4 5int main () 6{7 int (*fptr)() = foo;8 printf ("%p\n", fptr); // break here9 return fptr();10}11