brintos

brintos / llvm-project-archived public Read only

0
0
Text · 143 B · 388de7f Raw
11 lines · c
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