Skip to content
Snippets Groups Projects
Select Git revision
  • bbdb22eb38eed2feb177e7a62289af31609f3c28
  • master default protected
  • development
3 results

Dockerfile

Blame
  • functions-04.c 111 B
    #include <stdio.h>
    
    void hello ()
    {
      printf ("Hello, world!\n");
    }
    
    int main ()
    {
      hello (42);
      return 0;
    }