Skip to content
Snippets Groups Projects
Select Git revision
  • 4ff440eaac9aee21bd0a6c7f5ce7927ee4cd9b94
  • master default
2 results

functions-4.c

Blame
  • Forked from Peter Gerwinski / hp
    341 commits behind the upstream repository.
    functions-4.c 153 B
    #include <stdio.h>
    
    void add_verbose (int a, int b)
    {
      printf ("%d + %d = %d\n", a, b, a + b);
    }
    
    int main (void)
    {
      add_verbose (3, 7);
      return 0;
    }