module.c 161 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #include <stdio.h> int fun1() { return 15; } void fun2(int a) { printf("%d\n", a); } int fun3(double b) { printf("%f\n", b); return (int)b; }