#include <stdio.h> int answer (void) { return 42; } void foo (void) { printf ("%d\n", answer); } int main (void) { foo (); return 0; }