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

Dockerfile

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