Back To C User Defined Functions Index
//program to create a function that returns smallest of three numbers passed to function as integer arguments #include
#include
int findsmall(int,int,int); int findsmall(int a,int b,int c) { int min; min=a; if(b