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

functions-3.c

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