Skip to content
Snippets Groups Projects
Select Git revision
  • 69516512eb49103ca94fa39a8e81f95eff5125f3
  • 2024ws default
  • 2023ws
  • 2022ws
  • 2021ws
  • 2020ws
  • 2018ws
  • 2019ws
  • 2017ws
  • 2016ws
10 results

functions-7.c

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;
    }