/* c_funct.c */ double c_funct (int I, float F, char * S) { printf ("I am now in C_Funct \n"); printf ("An integer is passed %d \n", I); printf ("A float is passed %g \n", F); printf ("A string is passed %s \n", S); printf ("now returning 4.73 \n"); return 4.73; }