/* Find the acceleration */ #include int main() { static float FORCE_OF_GRAVITY = 9.81; int pullforce = 10; float coeffOfFriction = 0.3; float weight = 6.0; /*calculate and display acceleration */ printf("Acceleration a = %f(m/s^2)\n",(pullforce-coeffOfFriction*weight*FORCE_OF_GRAVITY)/weight); return 0; }