Select Git revision
functions-4.c
Forked from
Peter Gerwinski / hp
341 commits behind the upstream repository.
Peter Gerwinski authored
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;
}