Find force

 #include<stdio.h>

float force(float mass);

int main(){

    float m;

    printf("Enter the value of mass in kgs\n");

    scanf("%f", &m);

    printf("The value of force in Newton is %.2f\n", force(m)); 

    return 0;

}


float force(float mass){

    float result = mass * 9.8;

    return result;

}


Comments

Popular posts from this blog

Snake game.c

Type declaration

Array with function