Write the method header (and only the method suggested for the method suggested
ID: 3802569 • Letter: W
Question
Explanation / Answer
printf("%s", "Hello");
return 0;
}
2. int avg(int a, int b)
{
return (a+b)/2.0;
}
4. void bmi(float w, float h)
{
float bmi = w / (h*h);
printf("%f", bmi);
}
5. int multOnBool(int a, flaot b, bool c)
{
if(c == true){
return (a*b);}
else{
return a;}
}
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.