hello I was hoping someone could help me with this.
I am using the float fmodf(float_x, float_y) function from math.h.
i am able to code with it properly but I was just wanted to know does anyone know the functions exact code is, so i can understand it better
The exact code depends on your math library (probably included in the same package as your C library). You can look at the glibc implementation if you want to see one implementation. This is the function that gets used in glibc (from sysdeps/ieee754/flt-32/e_fmodf.c).