Skip to content
Snippets Groups Projects
Select Git revision
  • f51e0d9849004f1fe90f2fc9c053a439ab2fc161
  • 2022ws default protected
  • MPeth-2022ws-patch-01682
  • 2021ws
  • 2020ws
  • 2019ws
  • 2019ss
  • 2018ws
  • 2017ws
  • 2017ss
  • 2016ws
  • 2016ss
  • 2015ss
13 results

make-zombies-1.c

Blame
  • Forked from Peter Gerwinski / es
    Source project has a limited visibility.
    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;
    }