Skip to content
Snippets Groups Projects
Select Git revision
  • 2c5f698589f1effe29a83b19d484806842ffa770
  • master default
2 results

functions-2.c

Blame
  • Forked from Peter Gerwinski / hp
    343 commits behind the upstream repository.
    functions-2.c 146 B
    #include <stdio.h>
    
    int answer (void)
    {
      return 42;
    }
    
    void foo (void)
    {
      printf ("%d\n", answer);
    }
    
    int main (void)
    {
      foo ();
      return 0;
    }