Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
BMI Calc CT
//gcc 5.4.0 #include <stdio.h> int main(void) { double weight; double height; scanf("%lf%lf",&weight,&height); double newheight; double footconv=0.3048; double BMI; newheight= height*footconv; BMI= (weight/newheight)/newheight; printf("%lf\n",BMI); return 0; }
run
|
edit
|
history
|
help
0
Lab 9 v1
Code2
apel
First program.c
WAP in C to convert decimal to binary
Dangling
1.5 No. of Processors
first C code
Assignment 4 v3
Struct