functions.c 179 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #include <stdio.h> void foo() { printf("foo()\n"); } int bar() { int ret = 3; printf("bar()->%d\n", ret); return ret; } void baaz(int i) { printf("baaz(%d)\n", i); }