Skip to content
Snippets Groups Projects
Select Git revision
  • 69c0bd971780f92ed5067d15da2ee6278ab7b902
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

hello-gtk.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    functions-04.c 111 B
    #include <stdio.h>
    
    void hello ()
    {
      printf ("Hello, world!\n");
    }
    
    int main ()
    {
      hello (42);
      return 0;
    }